{
  "info": {
    "name": "Airparser — mcp.ai",
    "description": "REST API for the Airparser 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/airparser",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "airparser_clone_extraction_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clone/extraction/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clone",
            "extraction",
            "schema"
          ]
        },
        "description": "Replace a destination inbox's extraction schema with a copy of a source inbox's schema.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_inbox_id\": \"\",\n  \"destination_inbox_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_create_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "inbox"
          ]
        },
        "description": "Create an Airparser inbox/parser for a document family using a text or vision extraction engine.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"llm_engine\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_delete_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "inbox"
          ]
        },
        "description": "Permanently delete an Airparser inbox and every document it contains. This destructive, cascading operation cannot be undone and requires explicit confirmation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inbox_id\": \"\",\n  \"confirm_permanent_deletion\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_get_account_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "usage"
          ]
        },
        "description": "Return the connected Airparser account's role, verification state, plan, and parsing-credit usage without exposing personal, secret, or internal account fields.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Get parsed output and status for a document, optionally including extended source and navigation details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source\": \"\",\n  \"document_id\": \"\",\n  \"detail_level\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_get_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "inbox"
          ]
        },
        "description": "Get one Airparser inbox, including its current extraction schema and useful parsing configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inbox_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "List and search documents in one inbox, one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"to_date\": \"\",\n  \"inbox_id\": \"\",\n  \"per_page\": 0,\n  \"from_date\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_list_inboxes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/inboxes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "inboxes"
          ]
        },
        "description": "List the Airparser inboxes available to the connected account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_parse_document_sync",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/document/sync",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "document",
            "sync"
          ]
        },
        "description": "Upload one document to an inbox and wait for its extracted JSON. This non-idempotent operation consumes plan credits, including one credit per PDF page. Do not retry automatically after an ambiguous f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"inbox_id\": \"\",\n  \"metadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airparser_upsert_extraction_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/extraction/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "extraction",
            "schema"
          ]
        },
        "description": "Create or completely replace the extraction schema used by an Airparser inbox. The fields array is the complete replacement, not a partial update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"inbox_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}