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.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "watchList": [12 "salmonella",13 {14 "name": "Example Supplier",15 "aliases": [16 "example brand"17 ]18 }19 ],20 "sourceTypes": [21 "food",22 "drug",23 "device"24 ],25 "classifications": [26 "Class I",27 "Class II"28 ],29 "statuses": [30 "Ongoing"31 ],32 "riskKeywords": [33 "salmonella",34 "sterility",35 "undeclared allergen"36 ]37};38
39// Run the Actor and wait for it to finish40const run = await client.actor("barking_wisdom/fda-supplier-competitor-risk-monitor").call(input);41
42// Fetch and print Actor results from the run's dataset (if any)43console.log('Results from dataset');44console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);45const { items } = await client.dataset(run.defaultDatasetId).listItems();46items.forEach((item) => {47 console.dir(item);48});49
50// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use FDA Supplier & Competitor Risk Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: