DailyMed Label Change Watch Report
Pricing
from $5.00 / 1,000 dailymed label rows
DailyMed Label Change Watch Report
Try Input: 1 drug watch + emitRawRows ≈ USD 0.005/row. From USD 0.005. Paste drug name and Start.
DailyMed Label Change Watch Report
Pricing
from $5.00 / 1,000 dailymed label rows
Try Input: 1 drug watch + emitRawRows ≈ USD 0.005/row. From USD 0.005. Paste drug name and Start.
You can access the DailyMed Label Change Watch Report 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.
{ "openapi": "3.0.1", "info": { "version": "0.1", "x-build-id": "0xAyZIxLXCG05OS8C" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/taroyamada~dailymed-label-change-watch-report/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-taroyamada-dailymed-label-change-watch-report", "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/taroyamada~dailymed-label-change-watch-report/runs": { "post": { "operationId": "runs-sync-taroyamada-dailymed-label-change-watch-report", "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/taroyamada~dailymed-label-change-watch-report/run-sync": { "post": { "operationId": "run-sync-taroyamada-dailymed-label-change-watch-report", "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": [ "watches" ], "properties": { "watches": { "title": "DailyMed watches", "type": "array", "description": "Bounded recurring watches. Use a stable id and at least one filter per watch.", "items": { "type": "object", "properties": { "id": { "title": "Watch ID", "description": "Stable identifier for this recurring watch.", "type": "string" }, "drugNames": { "title": "Drug names", "description": "Generic or brand names supported by DailyMed.", "type": "array", "items": { "type": "string" } }, "labelers": { "title": "Labelers", "description": "Public labeler name as recorded by DailyMed.", "type": "array", "items": { "type": "string" } }, "setIds": { "title": "Set IDs", "description": "Exact DailyMed SPL Set IDs.", "type": "array", "items": { "type": "string" } }, "applicationNumbers": { "title": "Application numbers", "description": "NDA/application numbers supported by DailyMed.", "type": "array", "items": { "type": "string" } }, "ndcs": { "title": "NDCs", "description": "National Drug Codes supported by DailyMed.", "type": "array", "items": { "type": "string" } }, "rxcuis": { "title": "RxCUIs", "description": "RxNorm Concept Unique Identifiers supported by DailyMed.", "type": "array", "items": { "type": "string" } }, "uniiCodes": { "title": "UNII codes", "description": "Unique Ingredient Identifiers supported by DailyMed.", "type": "array", "items": { "type": "string" } }, "publishedDateFrom": { "title": "Published date from", "description": "ISO date used with published_date_comparison.", "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" }, "publishedDateTo": { "title": "Published date to", "description": "ISO date upper bound when no from date is supplied.", "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" }, "publishedDateComparison": { "title": "Published date comparison", "description": "DailyMed comparison operator for publishedDateFrom.", "type": "string", "enum": [ "eq", "gt", "gte", "lt", "lte" ], "default": "gte" } }, "additionalProperties": false }, "default": [] }, "monitorKey": { "title": "Monitor key", "type": "string", "description": "Stable isolated state namespace for a recurring DailyMed portfolio.", "default": "dailymed-label-watch" }, "initialRunMode": { "title": "Initial run mode", "enum": [ "baseline_only", "emit_backfill" ], "type": "string", "description": "baseline_only stores the first observation with zero rows; emit_backfill emits current matches for an explicit first report.", "default": "baseline_only" }, "nameType": { "title": "Drug name type", "enum": [ "both", "generic", "brand" ], "type": "string", "description": "How DailyMed interprets drugNames.", "default": "both" }, "includeHistory": { "title": "Fetch version history", "type": "boolean", "description": "Fetch bounded DailyMed /history metadata for source-linked version evidence. Full label content is never fetched.", "default": true }, "generateReport": { "title": "Generate impact report", "type": "boolean", "description": "Generate one report-first aggregate when new or changed observations are emitted.", "default": true }, "emitRawRows": { "title": "Emit metadata rows", "type": "boolean", "description": "Emit the low-priced compact metadata row for each new or changed record.", "default": false }, "emitExport": { "title": "Generate export", "type": "boolean", "description": "Generate a compact JSON export of metadata/version evidence without full labels.", "default": false }, "emitUnchanged": { "title": "Emit unchanged observations", "type": "boolean", "description": "Accepted for compatibility, but unchanged observations remain zero rows and zero charge.", "default": false }, "maxRecordsPerWatch": { "title": "Maximum labels per watch", "minimum": 1, "maximum": 100, "type": "integer", "description": "Maximum DailyMed list records retained per bounded query. DailyMed pagesize maximum is 100.", "default": 25 }, "maxHistoryEntries": { "title": "Maximum history entries", "minimum": 1, "maximum": 100, "type": "integer", "description": "Maximum version-history entries retained per label.", "default": 10 }, "maxChargeUsd": { "title": "Maximum charge USD", "minimum": 0.005, "maximum": 250, "type": "number", "description": "Fail closed before delivery if planned PPE charges exceed this cap.", "default": 25 }, "dryRun": { "title": "Dry run", "type": "boolean", "description": "Return representative rows for every configured event without DailyMed requests, state save, or PPE charges.", "default": false } } }, "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 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for DailyMed Label Change Watch Report from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: