Back to Tools

PDF Parser

Documents

Extract text, images, and metadata from PDF documents. Supports OCR for scanned documents.

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-parser

cURL 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"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.