For the complete documentation index, see llms.txt. This page is also available as Markdown.

AI Agent Quickstart

For AI Agents and the Humans Who Run Them

Every Dataplex healthcare data product (CMS provider and facility data, FDA adverse events, CDC public health statistics, NPI provider records) can be discovered, sampled, and queried by an AI agent in minutes. This page is written to be machine-readable: exact listing identifiers, copy-paste SQL, and no steps that require a browser.

Read-only by design. Marketplace data shares are read-only: your AI agent can query Dataplex data but can never modify it.

Get a Dataplex Dataset from Inside Snowflake (SQL only, no UI)

If your agent operates inside a Snowflake account with CREATE DATABASE privileges, it can go from nothing to querying trial data in four statements: no browser, no sales call. Example using the FDA AEMS Adverse Events Dataset:

-- 1. Accept the listing terms (one-time, per listing)
CALL SYSTEM$ACCEPT_LEGAL_TERMS('DATA_EXCHANGE_LISTING', 'GZT1Z7QRT19A');

-- 2. Mount the listing as a database
CREATE DATABASE FDA_AEMS FROM LISTING 'GZT1Z7QRT19A';

-- 3. Query it
SELECT * FROM FDA_AEMS.DWV.DRUG_REPORTS LIMIT 10;

If a listing requires provider approval, request it and wait in one call, then create the database:

CALL SYSTEM$REQUEST_LISTING_AND_WAIT('GZT1Z7QRT19A');
CREATE DATABASE FDA_AEMS FROM LISTING 'GZT1Z7QRT19A';

Listing Identifiers for All Dataplex Products

Product
Listing global name
First query to run

GZT1Z7QRSXWC

SELECT * FROM <db>.DWV.RATES LIMIT 10;

GZT1Z7QRSX3V

SELECT * FROM <db>.DWV.PROVIDERS LIMIT 10;

GZT1Z125KEY

SELECT table_schema, table_name FROM <db>.INFORMATION_SCHEMA.VIEWS WHERE table_schema LIKE 'DWV%' LIMIT 10;

GZT1Z7QRSWHE

See product docs

GZT1Z7QRSYVE

See product docs

GZT1Z7QRT1XU

SELECT * FROM <db>.DWV.COMPLIANCE_DEADLINES LIMIT 10;

GZT1Z7QRT19A

SELECT * FROM <db>.DWV.DRUG_REPORTS LIMIT 10;

GZT1Z7QRT0BH

See product docs

GZT1Z7QRSW96

SELECT * FROM <db>.DWV.PROVIDERS LIMIT 10;

GZT1Z7QRT0IO

SELECT * FROM <db>.DWV.PRODUCT_INFO;

GZT1Z7QRT1QB

SELECT * FROM <db>.DWV.FACILITY_MASTER LIMIT 10;

Replace <db> with whatever database name you chose in CREATE DATABASE.

Machine-Readable Documentation

Not on Snowflake?

Last updated