curl --request POST \
--url https://api.wirespeed.co/v1/integration/count \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"includeDisabled": true,
"healthStatus": [],
"ids": [
"<string>"
]
}
'{
"totalCount": 123
}Returns total count of integrations matching the same filters as the search endpoint.
curl --request POST \
--url https://api.wirespeed.co/v1/integration/count \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"includeDisabled": true,
"healthStatus": [],
"ids": [
"<string>"
]
}
'{
"totalCount": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.wirespeed.co/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
asc, desc Include disabled integrations in search results
Filter by health status (multiple allowed)
healthy, unhealthy, unstable, unknown Restrict results to the given integration IDs
Total count of integrations matching the search criteria