{
  "openapi": "3.0.1",
  "info": {
    "title": "FDA FAERS Adverse Events",
    "description": "For pharmacovigilance teams, researchers, and data workflows: search public FDA FAERS reports by drug, adverse reaction, manufacturer, or focused openFDA/FAERS query. Filter by dates, countries, seriousness, and patient age or sex, then export structured report details.",
    "version": "0.0",
    "x-build-id": "98gvmRpm2zwUEEgzC"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/maximedupre~fda-faers/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-maximedupre-fda-faers",
        "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/maximedupre~fda-faers/runs": {
      "post": {
        "operationId": "runs-sync-maximedupre-fda-faers",
        "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/maximedupre~fda-faers/run-sync": {
      "post": {
        "operationId": "run-sync-maximedupre-fda-faers",
        "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": [
          "target"
        ],
        "properties": {
          "target": {
            "title": "Target",
            "enum": [
              "drug",
              "reaction",
              "manufacturer",
              "advancedQuery"
            ],
            "type": "string",
            "description": "Choose what to search. This picks one search path for the run."
          },
          "drugValues": {
            "title": "Drug values",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more drug values to find matching FAERS reports. Use this only when Target is Drug; other Target values are ignored.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "reactionTerms": {
            "title": "Adverse-reaction terms",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more adverse-reaction or side-effect terms. Use this only when Target is Adverse reaction; other Target values are ignored.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "manufacturerValues": {
            "title": "Manufacturer values",
            "minItems": 1,
            "type": "array",
            "description": "Enter one or more manufacturer values to find matching FAERS reports. Use this only when Target is Manufacturer; other Target values are ignored.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "queryExpression": {
            "title": "FAERS query expression",
            "type": "string",
            "description": "Enter one focused openFDA or FAERS query expression. Use this only when Target is Advanced query; other Target values are ignored. Example: patient.drug.medicinalproduct:\"ibuprofen\""
          },
          "receivedDateFrom": {
            "title": "Received date from",
            "type": "string",
            "description": "Optional first received date. It includes reports received on or after this date. Use it with Drug, Adverse reaction, or Manufacturer targets."
          },
          "receivedDateTo": {
            "title": "Received date to",
            "type": "string",
            "description": "Optional last received date. It includes reports received on or before this date. Use it with Drug, Adverse reaction, or Manufacturer targets."
          },
          "seriousOnly": {
            "title": "Serious reports only",
            "type": "boolean",
            "description": "Set to true to return only reports marked serious. Set to false to include all matching reports. Use it with Drug, Adverse reaction, or Manufacturer targets.",
            "default": false
          },
          "countries": {
            "title": "Event or report countries",
            "minItems": 1,
            "type": "array",
            "description": "Optional country names or codes. Enter one or more values to match an event or report country. Use them with Drug, Adverse reaction, or Manufacturer targets.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "patientSex": {
            "title": "Patient sex",
            "type": "string",
            "description": "Optional patient sex, such as Male or Female. Reports without this source value do not match. Use it with Drug, Adverse reaction, or Manufacturer targets."
          },
          "patientAgeMin": {
            "title": "Minimum patient age",
            "minimum": 0,
            "type": "integer",
            "description": "Optional lower age bound in years. It matches reports with a source age at or above this value. Use it with Drug, Adverse reaction, or Manufacturer targets."
          },
          "patientAgeMax": {
            "title": "Maximum patient age",
            "minimum": 0,
            "type": "integer",
            "description": "Optional upper age bound in years. It matches reports with a source age at or below this value. Use it with Drug, Adverse reaction, or Manufacturer targets."
          },
          "maxItems": {
            "title": "Maximum reports",
            "minimum": 1,
            "type": "integer",
            "description": "Optional Actor Work Limit. Stop after this many matching reports. Leave it empty to return all results until the source is exhausted."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}