Available Actions
extractocrmetadata
Input Schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"ocr": {
"type": "boolean"
},
"url": {
"type": "string"
},
"pages": {
"type": "array"
}
}
}Output Schema
{
"type": "object",
"properties": {
"text": {
"type": "string"
},
"pages": {
"type": "array"
},
"metadata": {
"type": "object"
}
}
}Quick Start
API Endpoint
POST /api/execute/pdf-parsercURL Example
curl -X POST \
https://api.nulayers.com/execute/pdf-parser \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "extract"}'