List messages
curl --request GET \
--url https://woes.dev/api/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/conversations/{conversationId}/messages';
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/conversations/{conversationId}/messages"
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/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"messages": [
{
"object": "<string>",
"id": "<string>",
"conversationId": "<string>",
"body": "<string>",
"deliveryStatus": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"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 messages
Lists ordered messages for a workspace-scoped conversation.
GET
https://woes.dev
/
api
/
v1
/
conversations
/
{conversationId}
/
messages
List messages
curl --request GET \
--url https://woes.dev/api/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/conversations/{conversationId}/messages';
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/conversations/{conversationId}/messages"
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/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"messages": [
{
"object": "<string>",
"id": "<string>",
"conversationId": "<string>",
"body": "<string>",
"deliveryStatus": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"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.
Path Parameters
Conversation id.
Response
Message list.
Allowed value:
"list"Hide child attributes
Hide child attributes
Last modified on July 4, 2026
Was this page helpful?
⌘I
