Skip to main content
POST
/
api
/
openfda
/
device
/
clearances
/
search
/openfda/device/clearances/search
curl --request POST \
  --url https://api.anysite.io/api/openfda/device/clearances/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "catheter",
  "applicant": "Novametrix",
  "device_name": "ventilator",
  "product_code": "BZD",
  "decision_code": "SESE",
  "clearance_type": "Traditional",
  "advisory_committee": "AN",
  "state": "IL",
  "country_code": "US",
  "decision_from": "<string>",
  "decision_to": "<string>"
}
'
[
  {
    "k_number": "<string>",
    "@type": "OpenfdaDeviceClearance",
    "applicant": "<string>",
    "device_name": "<string>",
    "product_code": "<string>",
    "decision_code": "<string>",
    "decision_description": "<string>",
    "clearance_type": "<string>",
    "advisory_committee": "<string>",
    "advisory_committee_description": "<string>",
    "review_advisory_committee": "<string>",
    "decision_at": 123,
    "date_received_at": 123,
    "contact": "<string>",
    "address_1": "<string>",
    "address_2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country_code": "<string>",
    "zip_code": "<string>",
    "postal_code": "<string>",
    "statement_or_summary": "<string>",
    "third_party_flag": true,
    "expedited_review_flag": true,
    "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 clearances 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 clearance fields

Example:

"catheter"

applicant
string | null

Applicant company name

Example:

"Novametrix"

device_name
string | null

Device name

Example:

"ventilator"

product_code
string | null

FDA product code

Example:

"BZD"

decision_code
string | null

Decision code

Example:

"SESE"

clearance_type
string | null

Clearance type

Example:

"Traditional"

advisory_committee
string | null

Advisory committee code

Example:

"AN"

state
string | null

Applicant US state code

Example:

"IL"

country_code
string | null

Applicant country code

Example:

"US"

device_class
enum<string> | null

Device regulatory class

Available options:
1,
2,
3,
U,
N,
F
decision_from
string | null

Decision date from (YYYY-MM-DD); requires decision_to

decision_to
string | null

Decision date to (YYYY-MM-DD); requires decision_from

Response

Successful Response

k_number
string
required
@type
string
default:OpenfdaDeviceClearance
applicant
string | null
device_name
string | null
product_code
string | null
decision_code
string | null
decision_description
string | null
clearance_type
string | null
advisory_committee
string | null
advisory_committee_description
string | null
review_advisory_committee
string | null
decision_at
integer | null
date_received_at
integer | null
contact
string | null
address_1
string | null
address_2
string | null
city
string | null
state
string | null
country_code
string | null
zip_code
string | null
postal_code
string | null
statement_or_summary
string | null
third_party_flag
boolean | null
expedited_review_flag
boolean | null
openfda
object | null
web_url
string
default:""