Getting started
- Introduction
- Prerequisites
- Rules of our API
- Quickstarts
Transition from V1 to V2 API
Platform API
- Reference
- Audiences
- Authorization
- Categories
- Crosstabs
- Insights
- Locations
- Namespaces
- Query
- Questions
- Splitters
- Taxonomy
- Waves
Crosstabs
v2 List Crosstabs
List crosstabs with metadata for current user.
GET
/
v2
/
saved
/
crosstabs
Copy
curl --request GET \
--url https://api.globalwebindex.com/v2/saved/crosstabs \
--header 'Authorization: <api-key>'
Copy
{
"count": 123,
"projects": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"notes": "<string>"
}
]
}
Authorizations
Response
200 - application/json
OK
List of projects.
Copy
curl --request GET \
--url https://api.globalwebindex.com/v2/saved/crosstabs \
--header 'Authorization: <api-key>'
Copy
{
"count": 123,
"projects": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"notes": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.