Skip to main content
GET
/
v1
/
api
/
parsers
List All Parsers
curl --request GET \
  --url https://dev-knowledge-store.actualize.ae/v1/api/parsers
[
  {
    "name": "<string>",
    "label": "<string>",
    "description": "<string>",
    "parser_type": "pdf",
    "config_options": {}
  }
]

Response

200 - application/json

Successful Response

name
string
required

The name of the parser with a minimum length of 5 characters.

Minimum length: 5
label
string
required

A user friendly name to be displayed on the UI for this Parser

parser_type
enum<string>
required

The type of the parser (e.g., PDF, CSV, DOCX, etc.).

Available options:
pdf,
csv,
docx,
web
config_options
object
required

The configuration options for the parser. Example: {'field_name': {'type': 'data_type[int,str,bool]', 'default': 'default_value for field. Use ... for required fields'}}

description
string

An optional description of the parser with a minimum length of 15 characters.

Minimum length: 15