v1

latestOpenAPI 3.1.02026-07-2210284274.4 KB
Change Feed

Registry change feed

Poll a cursor-based feed of registry changes. Events are ordered by UUID v7 event_id for monotonic cursor progression. The feed retains events for 90 days. The freshness object reports when the response was generated, the newest matching event currently visible to the feed, and the resulting feed lag.

Type filtering supports glob patterns: property.* matches property.created, property.updated, etc.

get/api/registry/feed

Query parameters

cursorstring uuid

Resume after this event ID

Resume after this event ID

typesstring

Comma-separated event type filters with glob support (e.g. property.*)

Example:property.*,agent.*

Comma-separated event type filters with glob support (e.g. property.*)

limitinteger

Max events per page (default 100, max 10,000)

Max events per page (default 100, max 10,000)

Response

Feed page

cursorstring uuid nullable required

Pass as cursor in the next request to continue polling

has_moreboolean required

Example response

{
  "events": [
    {
      "payload": {
        "identifiers": [
          {
            "type": "domain",
            "value": "examplepub.com"
          }
        ]
      }
    }
  ]
}