Instant search across 13 million+ trademark records sourced directly from the USPTO. Updated daily.
The free tier is available immediately with no API key. Just make a request:
# Search by trademark name
curl "https://tmsearchapi.com/search/mark?q=Nike"
# Search by owner
curl "https://tmsearchapi.com/search/owner?q=Apple+Inc"
# Combined search (mark + owner)
curl "https://tmsearchapi.com/search/combined?mark=swoosh&owner=Nike&limit=10"
Each response is JSON with a results array, total_count, and metadata:
{
"results": [
{
"serial_number": "78123456",
"registration_number": "3456789",
"status_code": "REGD",
"status_date": "2005-06-14",
"mark": "NIKE",
"classes": "025",
"descriptions": "Footwear",
"owner_name": "NIKE, INC.",
"owner_country": "US"
}
],
"total_count": 1,
"query": "Nike",
"search_type": "mark"
}
50 requests per day, per IP address. Resets at midnight UTC. No account needed.
Valid for 30 days from payment date. Pay once in USDC, USDT, or DAI on Base Mainnet — no subscription.
# 1. Generate your API key (free, instant)
curl -X POST "https://tmsearchapi.com/api/keys"
# Returns: {"api_key": "tm_abc123...", "credits": 0}
# 2. Check your key and get the payment address
curl -H "X-API-Key: tm_abc123..." "https://tmsearchapi.com/api/usage"
# 3. Send $20 in USDC/USDT/DAI on Base Mainnet (chainId 8453)
# to the payment address shown above
# 4. Submit transaction proof with your next search
curl -H "X-API-Key: tm_abc123..." -H "X-Payment: <base64-encoded-tx-proof>" "https://tmsearchapi.com/search/mark?q=Apple"
# Credits are applied automatically and the search runs
The X-Payment header is Base64-encoded JSON containing transactionHash, token, payer, and amount.
Search by trademark name. Tries exact match first, then falls back to case-insensitive partial match. limit defaults to 100, max 1000.
Search by owner / registrant name. Includes fuzzy fallback for common typos. limit defaults to 100, max 1000.
Search by both mark name AND owner simultaneously. At least one parameter required. Results must satisfy both conditions.
Generate a new API key for the paid tier. No request body required. Key starts with 0 credits.
Check whether an API key is valid and return its current credit balance and expiry date. Requires X-API-Key header. Does not consume any credits.
Check remaining credits, reset date, and payment instructions. Requires X-API-Key header.
Database connectivity and environment status check.
Full interactive documentation with live request testing: /docs — Machine-readable OpenAPI schema: /openapi.json
You can point any AI assistant — ChatGPT, Claude, Perplexity, and others — directly at this API. Share the link below and your assistant will understand how to search trademarks on your behalf.
Copy this URL and paste it into your AI chat. The assistant can read it and will immediately know how to use the API for you.
For technical assistants or tools that support OpenAPI, share this URL for the full machine-readable spec:
Once your AI assistant has the API details, try saying:
"Search the trademark API for any marks containing 'Bolt' and tell me who owns them."
"Check if there are any trademarks registered to Acme Corp."
"Find trademarks in the name 'STARLINK' and give me their status and registration numbers."
"Search for the trademark 'SWOOSH' owned by Nike and return the class codes."
Import /openapi.json directly into ChatGPT's custom action builder, LangChain, or any OpenAPI-compatible agent framework. No authentication configuration needed for the free tier.