> ## 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.

# List Jurisdictions

> List all trademark jurisdictions with deadline rules

## Response

Returns all jurisdictions with their registration and renewal rules.

<ResponseExample>
  ```json theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
