Resources

List searchable fields

GET/resources/fields

Returns the searchable fields for this instance, resolved live from the box's resource_type_field configuration. The field set is instance-specific — each publisher/deployment exposes different fields — so an integration should discover fields at runtime rather than assume a fixed set. The name of each field is what you pass as a key in fieldFilters/dateFilters on POST /resources/search.

X-Api-Key<token>

Issued to you when your integration is provisioned. Determines which catalogue resources are visible and which AI tools are available.

In: header

Query Parameters

type?integer

Optionally restrict to a resource-type's fields.

Response Body

application/json

curl -X GET "https://example.com/resources/fields"
{  "data": {    "fields": [      {        "ref": 0,        "name": "string",        "title": "string",        "type": 0      }    ]  }}