List Graph Statements

GET
/graph/v1/statements

List resolved graph statements with keyset pagination.

Authorization

apiKeyAuth
X-API-Key<token>

Graph API key header. Format: sk_...

In: header

Query Parameters

subjectFideId?string

Filter by resolved subject Fide ID

predicateFideId?string

Filter by predicate Fide ID

objectFideId?string

Filter by resolved object Fide ID

limit?integer

Max number of items to return (1-200)

Default50
Range1 <= value <= 200
cursor?string

Opaque cursor for keyset pagination

Response Body

application/json

application/json

application/json

application/json

curl -X GET "http://localhost:3001/graph/v1/statements"
{
  "items": [
    {
      "statementFingerprint": "string",
      "subjectFideId": "string",
      "subjectRawIdentifier": "string",
      "predicateFideId": "string",
      "predicateRawIdentifier": "string",
      "objectFideId": "string",
      "objectRawIdentifier": "string"
    }
  ],
  "nextCursor": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}