Skip to main content
GET
/
owners
/
{owner_id}
/
trademarks
Get owner trademarks
curl --request GET \
  --url https://api.signa.so/v1/owners/{owner_id}/trademarks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "trademarks": [
      {
        "serial_number": "98329732",
        "registration_number": "7234567",
        "jurisdiction": "US",
        "word_mark": "TRADEMARK",
        "status": "registered",
        "status_date": "2024-07-26",
        "filing_date": "2023-12-25",
        "registration_date": "2024-07-26",
        "expiry_date": "2034-07-26",
        "mark_type": "TRADEMARK",
        "drawing_type": "STANDARD_CHARACTER",
        "owner": {
          "owner_id": "owner_abc123",
          "name": "Example Corporation",
          "entity_type": "CORPORATION",
          "country": "US",
          "address": {
            "street": "<string>",
            "city": "<string>",
            "state": "<string>",
            "postal_code": "<string>",
            "country": "<string>"
          }
        },
        "classes": [
          {
            "class": 9,
            "status": "ACTIVE",
            "description": "Computer software; mobile applications"
          }
        ],
        "thumbnail_url": "<string>"
      }
    ],
    "pagination": {}
  }
}

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

owner_id
string
required

Query Parameters

jurisdiction
string
status
string
class
integer
page
integer
default:1
limit
integer
default:20

Response

200 - application/json

Owner's trademarks

success
boolean
data
object