curl --request GET \
--url 'https://response.stateset.com/api/v1/knowledge' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{}
],
"has_more": true,
"next_cursor": "string"
}
List stored knowledge documents
Knowledge documents. Alongside the list envelope, next_cursor carries the opaque cursor for the next page (pass it back as cursor); it is null on the last page.
GET
/
api
/
v1
/
knowledge
curl --request GET \
--url 'https://response.stateset.com/api/v1/knowledge' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{}
],
"has_more": true,
"next_cursor": "string"
}
Query parameters
integer
string
Response
object
string
object[]
boolean
string
Keyset cursor for the next page — present only on cursor-capable lists with more rows.
Status codes
| Code | Meaning |
|---|---|
200 | Knowledge documents. Alongside the list envelope, next_cursor carries the opaque cursor for the next page (pass it back as cursor); it is null on the last page. |
401 | Missing, invalid, or expired API key. |
403 | The key lacks a required scope. |
429 | Rate limit exceeded. |
Access
| Required scope | knowledge:read |
| Rate limit | 120 requests per minute |
curl --request GET \
--url 'https://response.stateset.com/api/v1/knowledge' \
--header "Authorization: Bearer $RESPONSECX_API_KEY"
{
"object": "list",
"data": [
{}
],
"has_more": true,
"next_cursor": "string"
}
Last modified on August 31, 2026