FDA Recall Supplier Exposure Intelligence
Pricing
from $8.40 / 1,000 results
FDA Recall Supplier Exposure Intelligence
Turn FDA recall datasets into recalling-firm concentration, Class I exposure, distribution breadth and supplier-risk signals.
FDA Recall Supplier Exposure Intelligence
Pricing
from $8.40 / 1,000 results
Turn FDA recall datasets into recalling-firm concentration, Class I exposure, distribution breadth and supplier-risk signals.
You can access the FDA Recall Supplier Exposure Intelligence programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "currentItems": [10 {11 "recallNumber": "R1",12 "recallingFirm": "Supplier A",13 "product": "Drug X",14 "classification": "Class I",15 "distributionPattern": "Nationwide",16 },17 {18 "recallNumber": "R2",19 "recallingFirm": "Supplier A",20 "product": "Device Y",21 "classification": "Class II",22 "distributionPattern": "CA TX NY",23 },24 {25 "recallNumber": "R3",26 "recallingFirm": "Supplier B",27 "product": "Food Z",28 "classification": "Class II",29 "distributionPattern": "Regional",30 },31 ],32 "previousItems": [{33 "recallNumber": "P1",34 "recallingFirm": "Supplier A",35 "product": "Drug Q",36 "classification": "Class II",37 "distributionPattern": "Regional",38 }],39}40
41# Run the Actor and wait for it to finish42run = client.actor("quanmatrix/fda-recall-supplier-exposure-intelligence").call(run_input=run_input)43
44# Fetch and print Actor results from the run's dataset (if there are any)45print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")46for item in client.dataset(run.default_dataset_id).iterate_items():47 print(item)48
49# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use FDA Recall Supplier Exposure Intelligence API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: