curl --request POST \
--url https://api.globalwebindex.com/v2/waves/filter \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"namespaces": [
{
"code": "<string>"
}
]
}'
{
"waves": [
{
"accessible": true,
"code": "<string>",
"date_end": {
"nanos": 123,
"seconds": 123
},
"date_start": {
"nanos": 123,
"seconds": 123
},
"id": 123,
"kind": "<string>",
"name": "<string>",
"namespaces": [
{
"code": "<string>"
}
]
}
]
}
Retrieve accessible waves that satisfy filter criteria.
curl --request POST \
--url https://api.globalwebindex.com/v2/waves/filter \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"namespaces": [
{
"code": "<string>"
}
]
}'
{
"waves": [
{
"accessible": true,
"code": "<string>",
"date_end": {
"nanos": 123,
"seconds": 123
},
"date_start": {
"nanos": 123,
"seconds": 123
},
"id": 123,
"kind": "<string>",
"name": "<string>",
"namespaces": [
{
"code": "<string>"
}
]
}
]
}
request for filter
The body is of type object
.
details about locations
The response is of type object
.
Was this page helpful?