curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities/{id}' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"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"
}
Retrieve an entity by its unique identifier.
Path Parameters - id: The entity’s unique identifier (UUID format) Response Returns the entity with all its properties and metadata…
GET
/
api
/
v1
/
entities
/
{id}
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities/{id}' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"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"
}
Path Parameters
id: The entity’s unique identifier (UUID format) Response Returns the entity with all its properties and metadata. Errors404 Not Found: Entity with the specified ID does not exist
read
Path parameters
string
required
Entity ID
Response
EntityResponse
number (float)
required
Confidence score
string
Creation timestamp (RFC3339)
string
required
Entity type
boolean
required
Whether entity has an embedding vector
string
required
Unique entity ID
string
required
Entity name
object
required
Entity properties
string
Last update timestamp (RFC3339)
Status codes
| Code | Meaning |
|---|---|
200 | Entity details |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
404 | Entity not found |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/entities/{id}' \
--header "X-API-Key: $STATESET_NSR_API_KEY"
{
"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"
}
Last modified on August 31, 2026