// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/status?limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'
GET
method
/status
path

Query Parameters

Below are the query parameters available for customizing the response:

id
string | undefined

Identifier for a specific status.

statusType
backlog | unStarted | started | completed | canceled

Filter by type of status e.g., ‘backlog’, ‘started’.

limit
1-100
default:
"10"

Specifies the maximum number of statuses to retrieve per request.

page
1-n
default:
"1"

Specifies the page number for pagination.

// Replace API_KEY with your api key
curl --location 'https://api.supahub.com/api/v1/status?limit=10&page=1' \
--header 'Authorization: Bearer API_KEY'