Skip to main content
GET
/
owners
/
search
Search trademark owners
curl --request GET \
  --url https://api.signa.so/v1/owners/search \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "results": [
      {
        "owner_id": "<string>",
        "name": "<string>",
        "normalized_name": "<string>",
        "country": "<string>",
        "entity_type": "<string>",
        "trademark_count": 123,
        "jurisdictions": [
          "<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

Query Parameters

q
string
required

Owner name search query

jurisdiction
string

Filter by jurisdiction

page
integer
default:1
limit
integer
default:20

Response

200 - application/json

Search results

success
boolean
data
object