# PDF To JSON Directory Listing Converter

**Use case:** 

Convert a PDF into structured JSON, extracting logos, links, and document type into clean key-value fields. Export results to JSON or CSV.

## Input

```json
{
  "pdfFile": [
    "https://www.orimi.com/pdf-test.pdf"
  ],
  "fieldsToExtract": "",
  "systemPrompt": "",
  "maxItems": 5
}
```

## Output

```json
{
  "documentName": {
    "label": "Document Name",
    "format": "string"
  },
  "numberOfPages": {
    "label": "Number of Pages",
    "format": "number"
  },
  "topic": {
    "label": "Topic",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  },
  "fetchedData": {
    "label": "All Extracted Data",
    "format": "object"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [PDF To JSON Parser](https://apify.com/parseforge/pdf-to-json-parser) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/pdf-to-json-parser) to learn more, explore other use cases, and run it yourself.