Search Graph Entities

GET
/graph/v1/search

Search resolved graph identifiers with keyset pagination.

Authorization

apiKeyAuth
X-API-Key<token>

Graph API key header. Format: sk_...

In: header

Query Parameters

q*string

Search query (raw identifier substring)

Length1 <= length
type?string

Optional entity type-char filter

Value in"0" | "1" | "2" | "7" | "3" | "4" | "5" | "6"
limit?integer

Max number of items to return (1-100)

Default20
Range1 <= value <= 100
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/search?q=alice"
{
  "items": [
    {
      "fideId": "string",
      "rawIdentifier": "string",
      "type": "string",
      "sourceType": "string"
    }
  ],
  "nextCursor": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}