API Documentation
Account Invitations
AI Actions
Storage Items
Consents
Get pageview
Get pageview by ID
GET
/
pageviews
/
{id}
Copy
curl --request GET \
--url https://cookiechimp.com/api/v1/pageviews/{id} \
--header 'Authorization: <api-key>'
Copy
{
"id": "pageview890",
"session_id": "sess123",
"url": "https://www.example.com/products/123",
"consent_id": "consent321",
"active_cookies": [
"essential-cookie-1",
"cookie1",
"cookie2"
],
"created_at": "2023-01-20T12:50:00Z"
}
Authorizations
Path Parameters
ID of the resource
Response
200
application/json
Pageview
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://cookiechimp.com/api/v1/pageviews/{id} \
--header 'Authorization: <api-key>'
Copy
{
"id": "pageview890",
"session_id": "sess123",
"url": "https://www.example.com/products/123",
"consent_id": "consent321",
"active_cookies": [
"essential-cookie-1",
"cookie1",
"cookie2"
],
"created_at": "2023-01-20T12:50:00Z"
}
Assistant
Responses are generated using AI and may contain mistakes.