Skip to main content
GET
/
v1
/
owners
/
{id}
Get Owner
curl --request GET \
  --url https://api.example.com/v1/owners/{id}
{
  "id": "own_abc123",
  "object": "owner",
  "canonical_name": "Apple Inc.",
  "name_original_script": null,
  "country_code": "US",
  "entity_type": "corporation",
  "address": {
    "street": "One Apple Park Way",
    "city": "Cupertino",
    "state": "CA",
    "country_code": "US",
    "postal_code": "95014"
  },
  "aliases": [
    {
      "name": "Apple Computer Inc.",
      "type": "former_name",
      "source_office": "uspto"
    },
    {
      "name": "Apple Computer, Inc.",
      "type": "former_name",
      "source_office": "uspto"
    }
  ],
  "identifiers": [
    {
      "type": "sec_cik",
      "value": "320193"
    }
  ],
  "public_companies": [
    {
      "source": "sec",
      "source_id": "320193",
      "ticker": "AAPL",
      "exchange": "NASDAQ"
    }
  ],
  "stats": {
    "trademark_count": 1847,
    "registered_count": 1203,
    "pending_count": 87,
    "expired_count": 312,
    "cancelled_count": 45,
    "abandoned_count": 200,
    "registration_rate": 0.651,
    "abandonment_rate": 0.108,
    "jurisdiction_count": 5,
    "earliest_filing": "1985-04-01",
    "latest_filing": "2026-03-15",
    "top_classes": [
      { "class": 9, "count": 412 },
      { "class": 42, "count": 287 },
      { "class": 35, "count": 198 }
    ],
    "jurisdictions": [
      { "office_code": "US", "count": 823 },
      { "office_code": "EU", "count": 341 }
    ],
    "yearly_trend": [
      { "year": 2024, "count": 45 },
      { "year": 2025, "count": 62 }
    ],
    "top_attorneys": [
      { "attorney_id": "att_abc123", "name": "Jane Smith", "count": 312 }
    ],
    "top_mark_types": [
      { "mark_type": "word", "count": 1102 },
      { "mark_type": "figurative", "count": 502 }
    ],
    "computed_at": "2026-03-24T00:00:00Z"
  },
  "livemode": true,
  "request_id": "req_xyz789"
}

Path Parameters

id
string
required
Owner ID (e.g., own_abc123)

Response

id
string
Owner ID (own_*)
object
string
Always "owner"
canonical_name
string
Canonical (normalized) owner name
name_original_script
string
Owner name in original script (may be null)
country_code
string
ISO country code
entity_type
string
Entity type (e.g., corporation, individual)
address
object
Owner address (may be null)
aliases
object[]
identifiers
object[]
External identifiers (SEC CIK, LEI, etc.)
public_companies
object[]
stats
object
livemode
boolean
Whether this is live data (always true)
{
  "id": "own_abc123",
  "object": "owner",
  "canonical_name": "Apple Inc.",
  "name_original_script": null,
  "country_code": "US",
  "entity_type": "corporation",
  "address": {
    "street": "One Apple Park Way",
    "city": "Cupertino",
    "state": "CA",
    "country_code": "US",
    "postal_code": "95014"
  },
  "aliases": [
    {
      "name": "Apple Computer Inc.",
      "type": "former_name",
      "source_office": "uspto"
    },
    {
      "name": "Apple Computer, Inc.",
      "type": "former_name",
      "source_office": "uspto"
    }
  ],
  "identifiers": [
    {
      "type": "sec_cik",
      "value": "320193"
    }
  ],
  "public_companies": [
    {
      "source": "sec",
      "source_id": "320193",
      "ticker": "AAPL",
      "exchange": "NASDAQ"
    }
  ],
  "stats": {
    "trademark_count": 1847,
    "registered_count": 1203,
    "pending_count": 87,
    "expired_count": 312,
    "cancelled_count": 45,
    "abandoned_count": 200,
    "registration_rate": 0.651,
    "abandonment_rate": 0.108,
    "jurisdiction_count": 5,
    "earliest_filing": "1985-04-01",
    "latest_filing": "2026-03-15",
    "top_classes": [
      { "class": 9, "count": 412 },
      { "class": 42, "count": 287 },
      { "class": 35, "count": 198 }
    ],
    "jurisdictions": [
      { "office_code": "US", "count": 823 },
      { "office_code": "EU", "count": 341 }
    ],
    "yearly_trend": [
      { "year": 2024, "count": 45 },
      { "year": 2025, "count": 62 }
    ],
    "top_attorneys": [
      { "attorney_id": "att_abc123", "name": "Jane Smith", "count": 312 }
    ],
    "top_mark_types": [
      { "mark_type": "word", "count": 1102 },
      { "mark_type": "figurative", "count": 502 }
    ],
    "computed_at": "2026-03-24T00:00:00Z"
  },
  "livemode": true,
  "request_id": "req_xyz789"
}