Skip to main content
GET
/
v1
/
attorneys
/
{id}
Get Attorney
curl --request GET \
  --url https://api.example.com/v1/attorneys/{id}
{
  "id": "att_abc123",
  "object": "attorney",
  "name": "Jane Smith",
  "firm": {
    "id": "firm_def456",
    "name": "Smith & Partners LLP"
  },
  "stats": {
    "trademark_count": 342,
    "registered_count": 287,
    "top_clients": [
      { "owner_id": "own_abc", "name": "Acme Corp", "mark_count": 45 }
    ],
    "avg_prosecution_days": 312
  },
  "livemode": true,
  "request_id": "req_xyz789"
}

Path Parameters

id
string
required
Attorney ID (e.g., att_abc123)

Response

{
  "id": "att_abc123",
  "object": "attorney",
  "name": "Jane Smith",
  "firm": {
    "id": "firm_def456",
    "name": "Smith & Partners LLP"
  },
  "stats": {
    "trademark_count": 342,
    "registered_count": 287,
    "top_clients": [
      { "owner_id": "own_abc", "name": "Acme Corp", "mark_count": 45 }
    ],
    "avg_prosecution_days": 312
  },
  "livemode": true,
  "request_id": "req_xyz789"
}