FDA Supplier & Competitor Risk Monitor
Pricing
Pay per usage
Go to Apify Store
FDA Supplier & Competitor Risk Monitor
Monitors public FDA/openFDA enforcement records for watched suppliers, competitors, brands, products and risk terms.
FDA Supplier & Competitor Risk Monitor
Pricing
Pay per usage
Monitors public FDA/openFDA enforcement records for watched suppliers, competitors, brands, products and risk terms.
You can access the FDA Supplier & Competitor Risk Monitor 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 Integrations settings 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 "watchList": [10 "salmonella",11 {12 "name": "Example Supplier",13 "aliases": ["example brand"],14 },15 ],16 "sourceTypes": [17 "food",18 "drug",19 "device",20 ],21 "classifications": [22 "Class I",23 "Class II",24 ],25 "statuses": ["Ongoing"],26 "riskKeywords": [27 "salmonella",28 "sterility",29 "undeclared allergen",30 ],31}32
33# Run the Actor and wait for it to finish34run = client.actor("barking_wisdom/fda-supplier-competitor-risk-monitor").call(run_input=run_input)35
36# Fetch and print Actor results from the run's dataset (if there are any)37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])38for item in client.dataset(run["defaultDatasetId"]).iterate_items():39 print(item)40
41# 📚 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 Supplier & Competitor Risk Monitor API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: