{
  "info": {
    "name": "OCR.space — mcp.ai",
    "description": "REST API for the OCR.space MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/ocrspace",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ocrspace_get_conversions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/conversions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "conversions"
          ]
        },
        "description": "Retrieve OCR API conversion statistics and usage data (PRO accounts only). Returns the number of conversions for Engine1, Engine2, and total conversions. Data is updated once daily and shows conversio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"startDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ocrspace_ocr_parse_image_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ocr/parse/image/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ocr",
            "parse",
            "image",
            "post"
          ]
        },
        "description": "Extract text from images and PDF documents using OCR (Optical Character Recognition). Supports 27 languages, table recognition, orientation detection, and word-level coordinate extraction. Provide exa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"file\": \"\",\n  \"scale\": false,\n  \"isTable\": false,\n  \"filetype\": \"\",\n  \"language\": \"\",\n  \"OCREngine\": 0,\n  \"base64Image\": \"\",\n  \"detectOrientation\": false,\n  \"isOverlayRequired\": false,\n  \"isCreateSearchablePdf\": false,\n  \"isSearchablePdfHideTextLayer\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ocrspace_parse_image_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/image/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "image",
            "url"
          ]
        },
        "description": "Extract text from images via URL using simplified GET endpoint. Only supports URL-based submissions - no file uploads or base64 encoding. Faster and simpler than POST endpoint for basic use cases.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"language\": \"\",\n  \"isOverlayRequired\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}