Skip to main content
GET
/
v1
/
offices
List Offices
curl --request GET \
  --url https://api.signa.so/v1/offices \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "code": "uspto",
      "object": "office",
      "name": "United States Patent and Trademark Office",
      "jurisdiction_code": "US",
      "website_url": "https://www.uspto.gov",
      "source_format": "dtd_v2",
      "status": "live",
      "update_cadence": "daily",
      "total_marks": 1547832,
      "last_synced_at": "2026-03-24T06:00:00.000Z",
      "last_sync_status": "completed"
    },
    {
      "code": "euipo",
      "object": "office",
      "name": "European Union Intellectual Property Office",
      "jurisdiction_code": "EU",
      "website_url": "https://euipo.europa.eu",
      "source_format": "eSearch_json",
      "status": "live",
      "update_cadence": "daily",
      "total_marks": 892451,
      "last_synced_at": "2026-03-24T06:00:00.000Z",
      "last_sync_status": "completed"
    }
  ],
  "has_more": false,
  "request_id": "req_xyz789"
}

Documentation Index

Fetch the complete documentation index at: https://docs.signa.so/llms.txt

Use this file to discover all available pages before exploring further.

Response

Returns the trademark offices that are currently shipping data on the Signa platform. Offices whose connectors are still in development are omitted from this response.
object
string
Always "list"
data
object[]
has_more
boolean
Always false (offices are not paginated)
request_id
string
Unique request identifier
{
  "object": "list",
  "data": [
    {
      "code": "uspto",
      "object": "office",
      "name": "United States Patent and Trademark Office",
      "jurisdiction_code": "US",
      "website_url": "https://www.uspto.gov",
      "source_format": "dtd_v2",
      "status": "live",
      "update_cadence": "daily",
      "total_marks": 1547832,
      "last_synced_at": "2026-03-24T06:00:00.000Z",
      "last_sync_status": "completed"
    },
    {
      "code": "euipo",
      "object": "office",
      "name": "European Union Intellectual Property Office",
      "jurisdiction_code": "EU",
      "website_url": "https://euipo.europa.eu",
      "source_format": "eSearch_json",
      "status": "live",
      "update_cadence": "daily",
      "total_marks": 892451,
      "last_synced_at": "2026-03-24T06:00:00.000Z",
      "last_sync_status": "completed"
    }
  ],
  "has_more": false,
  "request_id": "req_xyz789"
}