PerfectParser Docs

List Parsers

Reference for the GET /v1/parsers endpoint.

GET /v1/parsers

Returns a paginated list of your active parsers.

Query Parameters

ParameterTypeDescription
limitnumberResults per page (default: 20, max: 100).
cursorstringPagination cursor from a previous list response.
curl https://api.perfectparser.com/v1/parsers?limit=20 \
  -H "X-API-Key: pp_live_your_secret_key"

Response 200 OK

{
  "parsers": [
    {
      "parser_id": "prs_999",
      "name": "Invoice Parser",
      "description": "Extracts vendor and totals from invoices",
      "result_mode": "one_per_file",
      "schema": {},
      "fields": {},
      "has_sample_file": false,
      "created_at": "2026-06-20T10:00:00.000Z",
      "updated_at": "2026-06-20T10:00:00.000Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "has_next_page": false,
    "next_cursor": null
  }
}

Common Error Responses

HTTP StatusError CodeDescription
401UNAUTHORIZEDInvalid or missing API key.

On this page