Skip to main content
GET
/
v1
/
stock
/
uspto-patent
Get USPTO Patent
curl --request GET \
  --url https://api.aries.com/v1/stock/uspto-patent \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "NVDA",
  "data": [
    {
      "applicationNumber": "17565837",
      "companyFilingName": [
        "NVIDIA CORPORATION"
      ],
      "filingDate": "2021-12-30 00:00:00",
      "description": "OBSTACLE TO PATH ASSIGNMENT FOR AUTONOMOUS SYSTEMS AND APPLICATIONS",
      "filingStatus": "Application",
      "patentNumber": "US20230213945A1",
      "publicationDate": "2023-07-06 00:00:00",
      "patentType": "Utility",
      "url": ""
    }
  ]
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. NVDA).
fromstringYesFrom date YYYY-MM-DD.
tostringYesTo date YYYY-MM-DD.

Response

Success returns 200 OK with a JSON object containing data array of patent entries (e.g. applicationNumber, patentNumber, description, filingDate, publicationDate, type, url), and symbol. Errors: 400 when symbol or dates are missing, 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

Stock ticker to query. Send the plain uppercase symbol exactly as you'd type it on a brokerage screen, e.g. AAPL, MSFT.

Example:

"AAPL"

from
string<date>
required

Start of the date window, inclusive. Format: YYYY-MM-DD (e.g. 2024-01-01).

Example:

"2024-01-01"

to
string<date>
required

End of the date window, inclusive. Format: YYYY-MM-DD (e.g. 2024-12-31).

Example:

"2024-12-31"

Response

USPTO patent data.

data
object[]
symbol
string