{
  "openapi": "3.0.1",
  "info": {
    "title": "FDA Import Alert Monitor — DWPE Red List Scraper",
    "description": "Scrape FDA Import Alerts (Detention Without Physical Examination) with a daily added/removed change-delta feed. Public-domain data for customs brokers, importers and trade-compliance.",
    "version": "1.0",
    "x-build-id": "P2yJgtCvnlOduS1JD"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/araluma~fda-import-alerts-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-araluma-fda-import-alerts-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/araluma~fda-import-alerts-scraper/runs": {
      "post": {
        "operationId": "runs-sync-araluma-fda-import-alerts-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/araluma~fda-import-alerts-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-araluma-fda-import-alerts-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Run mode",
            "enum": [
              "discover",
              "delta",
              "full"
            ],
            "type": "string",
            "description": "DISCOVER: list all available import alerts with their metadata (fast, good for a first look). DELTA: only output firms ADDED / REMOVED / CHANGED since the previous run (recommended for daily monitoring). FULL: scrape every firm/product on the selected alerts.",
            "default": "discover"
          },
          "alertNumbers": {
            "title": "Specific import alert numbers (optional)",
            "uniqueItems": true,
            "type": "array",
            "description": "Limit the run to specific alert numbers, e.g. [\"66-41\", \"99-30\", \"190\"]. You may use the official dotted format (66-41) or the raw page id (190). Leave empty to process ALL active import alerts.",
            "items": {
              "type": "string"
            }
          },
          "countryFilter": {
            "title": "Country filter (optional)",
            "uniqueItems": true,
            "type": "array",
            "description": "Only keep firms located in these countries (matched case-insensitively against the country header, e.g. \"CHINA\", \"INDIA\"). Leave empty for all countries.",
            "items": {
              "type": "string"
            }
          },
          "listTypes": {
            "title": "List types to include",
            "type": "array",
            "description": "Which DWPE lists to scrape. Red List = firms/products currently subject to detention. Green List = firms exempted. Yellow List = intensified surveillance.",
            "items": {
              "type": "string",
              "enum": [
                "red",
                "green",
                "yellow"
              ],
              "enumTitles": [
                "Red List",
                "Green List",
                "Yellow List"
              ]
            },
            "default": [
              "red",
              "green"
            ]
          },
          "maxAlerts": {
            "title": "Max alerts to process",
            "minimum": 0,
            "type": "integer",
            "description": "Safety cap on how many import alerts to fetch in a single run (0 = no limit). Useful for testing.",
            "default": 0
          },
          "requestDelaySecs": {
            "title": "Delay between requests (seconds)",
            "minimum": 30,
            "maximum": 120,
            "type": "integer",
            "description": "Politeness delay between page fetches. The FDA robots.txt requires a 30-second hit-rate, so values below 30 are automatically raised to 30 to stay compliant and avoid the FDA's abuse-throttle page.",
            "default": 30
          },
          "allowSnapshotShrink": {
            "title": "Allow snapshot to shrink (advanced)",
            "type": "boolean",
            "description": "DELTA safety: by default the run refuses to overwrite its baseline if the new scrape has far fewer firms than before (a likely partial/throttled scrape, which would emit false 'removed' rows). Enable only if you intentionally narrowed the scope and want the smaller baseline to stick.",
            "default": false
          },
          "notifyWebhookUrl": {
            "title": "Notification webhook URL (optional)",
            "type": "string",
            "description": "DELTA mode: if set, the Actor POSTs a JSON summary of the detected changes to this URL whenever a run finds added/removed/changed firms. Use it to push alerts into your own system, Zapier/Make, a database, etc."
          },
          "notifySlackWebhookUrl": {
            "title": "Slack incoming webhook URL (optional)",
            "type": "string",
            "description": "DELTA mode: if set, the Actor posts a formatted change summary to this Slack incoming webhook whenever changes are detected."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}