Skip to main content
POST
/
api
/
openfda
/
drug
/
approvals
/
search
/openfda/drug/approvals/search
curl --request POST \
  --url https://api.anysite.io/api/openfda/drug/approvals/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "lamotrigine",
  "sponsor_name": "DR REDDYS LABS LTD",
  "application_number": "ANDA076708",
  "brand_name": "LAMOTRIGINE",
  "active_ingredient": "LAMOTRIGINE",
  "dosage_form": "TABLET",
  "route": "ORAL",
  "submission_status": "AP"
}
'
[
  {
    "application_number": "<string>",
    "@type": "OpenfdaDrugApproval",
    "sponsor_name": "<string>",
    "products": [],
    "submissions": [],
    "openfda": {
      "@type": "OpenfdaBlock",
      "application_number": [],
      "brand_name": [],
      "generic_name": [],
      "manufacturer_name": [],
      "product_ndc": [],
      "package_ndc": [],
      "product_type": [],
      "route": [],
      "substance_name": [],
      "rxcui": [],
      "unii": [],
      "spl_id": [],
      "spl_set_id": [],
      "nui": [],
      "pharm_class_cs": [],
      "pharm_class_epc": [],
      "pharm_class_moa": [],
      "pharm_class_pe": [],
      "is_original_packager": [],
      "device_class": "<string>",
      "device_name": "<string>",
      "medical_specialty_description": "<string>",
      "regulation_number": "<string>",
      "fei_number": [],
      "registration_number": [],
      "k_number": [],
      "pma_number": []
    },
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of approval records to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Free-text query across all approval fields

Example:

"lamotrigine"

sponsor_name
string | null

Application sponsor

Example:

"DR REDDYS LABS LTD"

application_number
string | null

FDA application number

Example:

"ANDA076708"

brand_name
string | null

Product brand name

Example:

"LAMOTRIGINE"

active_ingredient
string | null

Active ingredient name

Example:

"LAMOTRIGINE"

dosage_form
string | null

Product dosage form

Example:

"TABLET"

route
string | null

Product route

Example:

"ORAL"

marketing_status
enum<string> | null

Product marketing status

Available options:
Prescription,
Over-the-counter,
Discontinued,
None (Tentative Approval)
submission_status
string | null

Submission status code

Example:

"AP"

Response

Successful Response

application_number
string
required
@type
string
default:OpenfdaDrugApproval
sponsor_name
string | null
products
object[]
submissions
object[]
openfda
object | null
web_url
string
default:""