Skip to main content
GET
/
v1
/
jurisdictions
List Jurisdictions
curl --request GET \
  --url https://api.signa.so/v1/jurisdictions \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "code": "US",
      "name": "United States",
      "registration_term_years": 10,
      "renewal_term_years": 10,
      "has_declaration_of_use": true,
      "has_incontestability": true,
      "supported": true
    },
    {
      "code": "EU",
      "name": "European Union",
      "registration_term_years": 10,
      "renewal_term_years": 10,
      "has_declaration_of_use": false,
      "has_incontestability": false,
      "supported": true
    }
  ],
  "has_more": false,
  "pagination": {
    "cursor": null
  },
  "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 all jurisdictions with their registration and renewal rules.
{
  "object": "list",
  "data": [
    {
      "code": "US",
      "name": "United States",
      "registration_term_years": 10,
      "renewal_term_years": 10,
      "has_declaration_of_use": true,
      "has_incontestability": true,
      "supported": true
    },
    {
      "code": "EU",
      "name": "European Union",
      "registration_term_years": 10,
      "renewal_term_years": 10,
      "has_declaration_of_use": false,
      "has_incontestability": false,
      "supported": true
    }
  ],
  "has_more": false,
  "pagination": {
    "cursor": null
  },
  "request_id": "req_xyz789"
}