Reducto · Example Payload

Reducto Parse Response

Document ParsingPDFOCRData ExtractionAIMachine LearningDocument IntelligenceStructured Data

Reducto Parse Response is an example object payload from Reducto, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

job_idstatusresult

Example Payload

Raw ↑
{
  "job_id": "job_abc123",
  "status": "success",
  "result": {
    "chunks": [
      {
        "content": "This Agreement is entered into as of January 1, 2024...",
        "embed": "This Agreement is entered into as of January 1, 2024...",
        "metadata": {
          "page_start": 1,
          "page_end": 1,
          "section_headers": [
            "Agreement"
          ],
          "is_visual": false
        }
      }
    ],
    "usage": {
      "pages": 10,
      "credits": 10,
      "num_images": 3,
      "num_tables": 2,
      "num_chunks": 45
    }
  }
}