curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"items": [
{
"confidence": 7.5,
"created_at": "2026-08-31T14:22:05Z",
"entity_type": "string",
"has_embedding": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"properties": {},
"updated_at": "2026-08-31T14:22:05Z"
}
],
"pagination": {
"has_more": true,
"limit": 20,
"next_cursor": "string",
"offset": 1,
"prev_cursor": "string",
"total": 102
}
}
List all entities in the knowledge base with pagination.
Query Parameters - limit: Maximum number of results (default: 50) - offset: Number of results to skip (default: 0) Response Returns a paginated list of all…
GET
/
api
/
v1
/
entities
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"items": [
{
"confidence": 7.5,
"created_at": "2026-08-31T14:22:05Z",
"entity_type": "string",
"has_embedding": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"properties": {},
"updated_at": "2026-08-31T14:22:05Z"
}
],
"pagination": {
"has_more": true,
"limit": 20,
"next_cursor": "string",
"offset": 1,
"prev_cursor": "string",
"total": 102
}
}
Query Parameters
limit: Maximum number of results (default: 50)offset: Number of results to skip (default: 0) Response Returns a paginated list of all entities. List entities with pagination.
read
Query parameters
integer
Maximum number of items to return (1-1000, default: 50)
integer
Number of items to skip (default: 0)
string
Cursor for cursor-based pagination (alternative to offset)
string
Sort field with optional direction prefix (- for descending) Examples: ‘created_at’, ‘-name’, ‘confidence’
Response
PaginatedEntityResponse
EntityResponse[]
required
The items in this page
Show EntityResponse
Show EntityResponse
PaginationMeta
required
Status codes
| Code | Meaning |
|---|---|
200 | List of entities |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"items": [
{
"confidence": 7.5,
"created_at": "2026-08-31T14:22:05Z",
"entity_type": "string",
"has_embedding": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"properties": {},
"updated_at": "2026-08-31T14:22:05Z"
}
],
"pagination": {
"has_more": true,
"limit": 20,
"next_cursor": "string",
"offset": 1,
"prev_cursor": "string",
"total": 102
}
}
Last modified on August 31, 2026