List statuses
curl --request GET \
--url https://woes.dev/api/v1/statuses \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/statuses';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/statuses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/statuses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"hasMore": true,
"statuses": [
{
"object": "<string>",
"id": "<string>",
"label": "<string>",
"lifecycle": "<string>",
"enabled": true,
"rank": 123,
"tone": "<string>",
"color": "<string>"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}List statuses
Lists workspace ticket status definitions.
GET
https://woes.dev
/
api
/
v1
/
statuses
List statuses
curl --request GET \
--url https://woes.dev/api/v1/statuses \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/statuses';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/statuses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/statuses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"hasMore": true,
"statuses": [
{
"object": "<string>",
"id": "<string>",
"label": "<string>",
"lifecycle": "<string>",
"enabled": true,
"rank": 123,
"tone": "<string>",
"color": "<string>"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}Authorizations
Workspace API key that starts with woesk_. Paste your own key into the docs playground; never expose it in browser code.
Response
Status definitions.
Last modified on July 4, 2026
Was this page helpful?
⌘I
