Skip to main content
GET
/
trademarks
/
{jurisdiction}
/
{trademark_id}
/
documents
Get trademark documents
curl --request GET \
  --url https://api.signa.so/v1/trademarks/{jurisdiction}/{trademark_id}/documents \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "documents": [
      {
        "document_id": "<string>",
        "date": "2023-12-25",
        "type": "<string>",
        "description": "<string>",
        "url": "<string>",
        "has_file": true,
        "download_url": "<string>"
      }
    ]
  }
}

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

jurisdiction
string
required
trademark_id
string
required

Query Parameters

type
string

Filter by document type

from_date
string<date>
to_date
string<date>
page
integer
default:1
limit
integer
default:20

Response

200 - application/json

Document list

success
boolean
data
object