GET
/
ai-actions
curl --request GET \
  --url https://cookiechimp.com/api/v1/ai-actions \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "cookie_id": "example_uuid",
      "type": "autofill",
      "metadata": {
        "description": "Tracks user activities.",
        "company": "Example Company",
        "domain": "example.com",
        "duration": "Session"
      }
    }
  ],
  "pagination": {
    "total": 100,
    "limit": 20,
    "offset": 0
  }
}

Authorizations

X-API-KEY
string
headerrequired

Query Parameters

limit
integer
default: 20

Number of resources to return

offset
integer
default: 0

Number of resources to skip

sort
string

Field to sort by

order
enum<string>

Sort order

Available options:
asc,
desc
cookie_id
string

ID of the cookie to filter by

type
enum<string>

Type of the AI action to filter by

Available options:
autofill,
auto_categorisation,
auto_approved

Response

200 - application/json
data
object[]
pagination
object