Skip to main content
GET
/
owners
/
{owner_id}
Get owner details
curl --request GET \
  --url https://api.signa.so/v1/owners/{owner_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "owner_id": "<string>",
    "name": "<string>",
    "entity_type": "<string>",
    "country": "<string>",
    "address": {},
    "statistics": {
      "total_trademarks": 123,
      "by_jurisdiction": {},
      "by_status": {},
      "by_class": {}
    }
  }
}

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

Response

200 - application/json

Owner details

success
boolean
data
object