v34

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-09194386949.7 KB
Beta
Configurations
Configurations

List Configurations

List product configurations for the current project.

get/api/v1/beta/configurations

Query parameters

product_typestring[] nullable

Filter by one or more product types. Repeat the parameter for multiple values.

Filter by one or more product types. Repeat the parameter for multiple values.

namestring nullable

Filter by configuration name.

Filter by configuration name.

page_sizeinteger nullable

Number of items per page.

Number of items per page.

page_tokenstring nullable

Pagination token.

Pagination token.

latest_onlyboolean

Return only the latest version per configuration name.

Return only the latest version per configuration name.

project_idstring uuid nullable
organization_idstring uuid nullable

Cookies

sessionstring nullable

Response

Successful Response

next_page_tokenstring nullable

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

total_sizeinteger nullable

The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

Example response

{
  "items": [
    {
      "parameters": {
        "target_pages": "1,3,5-7",
        "max_pages": 10,
        "tier": "cost_effective",
        "version": "latest",
        "extraction_target": "per_doc",
        "system_prompt": "Extract all monetary values in USD. If a currency is not specified, assume USD.",
        "parse_tier": "fast",
        "parse_config_id": "cfg-11111111-2222-3333-4444-555555555555"
      }
    }
  ]
}