List Review Queue
List entities awaiting curation, for a human reviewer's queue.
Returns a cursor-paginated set of entities scoped to your
account+environment (and optional bucket), each carrying a small preview
of its first mentions so a reviewer can triage without opening every
entity. All filters AND together.
status(repeatable) restricts to the given lifecycle states. Omitting it defaults to the pre-terminal statesextractedandproposed.type(repeatable,ety_...IDs) matches the entity's effective type: an entity matches when its assigned type is one of these IDs, or it has no assigned type and its bem-inferred type name matches one of them.assignedTo(meor ausr_...ID) restricts to entities whose effective type the given user reviews.meresolves to the calling user.since(RFC3339) restricts to entities created at or after the time.
Pagination is cursor-based on entityID ascending; default limit is 50,
maximum 200.
Authorization
API Key Authenticate using API Key in request header
In: header
Query Parameters
Restrict to these lifecycle states. Defaults to extracted + proposed.
Restrict to entities whose effective type is one of these ety_... IDs.
me or a usr_... ID — restrict to entities whose effective type that user reviews.
RFC3339 timestamp — restrict to entities created at or after this time.
Cursor — an entityID defining your place in the list.
Optional bucket public ID (bkt_...) to scope to. Omit for all buckets.
50int321 <= value <= 200Response Body
application/json
curl -X GET "https://api.bem.ai/v3/review-queue"{
"entities": [
{
"entityID": "string",
"canonical": "string",
"type": "string",
"description": "string",
"mentionCount": 0,
"surfaceForms": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"status": "string",
"typeID": "string",
"validatedAt": "2019-08-24T14:15:22Z",
"validatedByUserID": "string",
"previewMentions": [
{
"mentionID": "string",
"entityID": "string",
"referenceID": "string",
"transformationID": "string",
"page": 0,
"sectionLabel": "string",
"surface": "string",
"createdAt": "2019-08-24T14:15:22Z"
}
]
}
],
"hasMore": true,
"nextCursor": "string"
}