Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.case.dev/llms.txt

Use this file to discover all available pages before exploring further.

Look up US trademark applications and registrations via the USPTO Trademark Status & Document Retrieval (TSDR) system. Supports lookup by serial number or registration number. Returns mark text, owner, goods/services, Nice classes, filing/registration dates, attorney of record, and mark images.

Look up a trademark

Endpoint
POST /legal/v1/trademark-search
curl -X POST https://api.case.dev/legal/v1/trademark-search \
  -H "Authorization: Bearer $CASEDEV_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "serialNumber": "97123456"
  }'
You can also look up by registration number:
curl -X POST https://api.case.dev/legal/v1/trademark-search \
  -H "Authorization: Bearer $CASEDEV_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"registrationNumber": "6789012"}'

Key parameters

ParameterTypeDescription
serialNumberstringUSPTO serial number (e.g. “97123456”)
registrationNumberstringUSPTO registration number (e.g. “6789012”)
Provide either serialNumber or registrationNumber. If both are provided, serialNumber takes precedence.

Response fields

FieldTypeDescription
serialNumberstringUSPTO serial number
registrationNumberstring | nullRegistration number (if registered)
markTextstring | nullText of the trademark
markTypestring | nullType (Standard Character Mark, Design Mark, etc.)
statusstring | nullCurrent status (Registered, Pending, Abandoned, etc.)
statusDatestring | nullDate of most recent status update
filingDatestring | nullFiling date
registrationDatestring | nullRegistration date
ownerobject | nullOwner name, address, and entity type
attorneystring | nullAttorney of record
goodsAndServicesarrayGoods/services with class numbers
niceClassesnumber[]Nice classification class numbers
imageUrlstring | nullURL to the mark image
usptoUrlstringCanonical TSDR link
See the API reference for the full response schema.