USPTO Trademark Search API Database Status API

Database freshness and update information

Operations 1

GET /v1/databaseStatus Get Database Status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/uspto-trademark-search-api-database-status-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

uspto-trademark-search-api-database-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USPTO Trademark Search Database Status API
  description: The USPTO Trademark Search API provides access to United States Patent and Trademark Office trademark data via RapidAPI. It enables developers to search active trademarks by keyword, check trademark availability, perform serial number lookups, search by owner, and retrieve database status information. The API is maintained by MartonKodok and updated daily from USPTO data. Supports batch processing and pagination for high-volume trademark research.
  version: '1.0'
  contact:
    name: MartonKodok
    email: android482-one@yahoo.com
    x-twitter: martonkodok
  x-rapidapi-collection: https://rapidapi.com/pentium10/api/uspto-trademark
servers:
- url: https://uspto-trademark.p.rapidapi.com
  description: USPTO Trademark Search API via RapidAPI
security:
- RapidAPIKey: []
tags:
- name: Database Status
  description: Database freshness and update information
paths:
  /v1/databaseStatus:
    get:
      operationId: getDatabaseStatus
      summary: Get Database Status
      description: Returns the current status of the USPTO trademark database including the last update date, record count, and database health information. Use this endpoint to verify data freshness before performing trademark searches.
      tags:
      - Database Status
      responses:
        '200':
          description: Database status information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatabaseStatus'
components:
  schemas:
    DatabaseStatus:
      type: object
      properties:
        lastUpdated:
          type: string
          format: date-time
          description: Timestamp of the last database update
        recordCount:
          type: integer
          description: Total number of trademark records in the database
        status:
          type: string
          enum:
          - ONLINE
          - MAINTENANCE
          - DEGRADED
          description: Current database operational status
        version:
          type: string
          description: Database version identifier
  securitySchemes:
    RapidAPIKey:
      type: apiKey
      in: header
      name: X-RapidAPI-Key
      description: RapidAPI subscription key