Skip to main content
GET
/
jurisdictions
/
{code}
Get jurisdiction details
curl --request GET \
  --url https://api.signa.so/v1/jurisdictions/{code} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "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

Path Parameters

code
enum<string>
required
Available options:
US,
EU,
UK,
WIPO

Response

200 - application/json

Jurisdiction details

success
boolean
data
object