API Documentation

GET/api/1/patents/list/{ticker}

Company Patents API

Returns patent filings for a company by ticker symbol

Parameters

2
limitnumber
query

Number of results (default 100, max 500)

tickerstringrequired
path

Stock ticker symbol

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/patents/list/AAPL?limit=10' \
  -H 'Accept: application/json'
200 Response
[
  {
  "patent_id": "11234567",
  "title": "System and method for...",
  "grant_date": "2025-01-15T00:00:00.000Z",
  "num_claims": 20,
  "patent_type": "utility"
}
]