markerapi API
Overview
Markerapi provides free search access to the USPTO trademark database, letting you check if a brand name is already trademarked. No API key required — just a free account.
Beginner Tip
Register a free account at markerapi.com to get credentials. The URL structure embeds your username and password as path segments: /trademark/SEARCH_TERM/username/YOUR_USERNAME/password/YOUR_PASSWORD.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from markerapi",
"description": "Trademark Search",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
trademarks List of trademark records matching the search term. trademarks[].serialnumber USPTO serial number uniquely identifying the trademark application. trademarks[].registrationnumber Registration number assigned after the trademark is approved. trademarks[].wordmark The exact text string registered as the trademark. trademarks[].statuscode Current trademark status (e.g. "LIVE/REGISTERED" or "DEAD/CANCELLED"). count Total number of trademark records returned in this response. Implementation Example
const url = "https://markerapi.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Domainsdb.info
⭐ Beginner's PickDomainsdb.info lets you search registered domain names by keyword, TLD, or zone with no authentication needed.
Tenders in Hungary
⭐ Beginner's PickThe Tenders in Hungary API from tenders.guru delivers publicly available government procurement data for Hungary, including contract values, buyer and supplier names, and tender dates.
Tenders in Poland
⭐ Beginner's PickThe Tenders in Poland API provides structured access to Polish government procurement notices and contract awards from tenders.guru, covering public sector buyers across all regions of Poland.
Tenders in Romania
⭐ Beginner's PickThe Tenders in Romania API by tenders.guru exposes Romanian public procurement data including tender details, contract values, and awarded suppliers, all freely accessible without authentication.
Tenders in Spain
⭐ Beginner's PickThe Tenders in Spain API from tenders.guru delivers Spanish public procurement data in JSON format, covering central government, autonomous communities, and local authorities.