Skip to main content
GET
/
jurisdictions
List supported jurisdictions
curl --request GET \
  --url https://api.signa.so/v1/jurisdictions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "jurisdictions": [
      {
        "code": "US",
        "name": "United States Patent and Trademark Office",
        "abbreviation": "USPTO",
        "type": "national",
        "website": "<string>",
        "search_tool": "<string>",
        "supported_features": {
          "search": true,
          "details": true,
          "documents": true,
          "image_search": true,
          "monitoring": true
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Use your API key from the dashboard. Include it in the Authorization header as a Bearer token.

Authorization: Bearer YOUR_API_KEY

Get your API key at https://signa.so/dashboard

Response

200 - application/json

List of jurisdictions

success
boolean
data
object