GET
/
cookies
curl --request GET \
  --url https://cookiechimp.com/api/v1/cookies \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "company_name": "Example Company Name",
      "description": "Tracks user preferences.",
      "domain": "www.example.com",
      "duration": "1 year",
      "last_seen_at": "2023-03-23T12:34:56Z",
      "name": "user-pref-cookie",
      "partitioned": false,
      "path": "/",
      "same_site": "Lax",
      "cookie_category_id": "cat1",
      "status": "finalised",
      "approved_by_type": "AI",
      "wildcard_cookie_id": null,
      "id": "user-pref-cookie",
      "is_wildcard_cookie": false
    }
  ],
  "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
category_id
string

ID of the cookie category to filter by

Response

200 - application/json
data
object[]
pagination
object