drugs(slug: String, limit: Int)
List published GLP-1 drugs. Pass slug to fetch a single drug.
{ drugs(limit: 3) { slug name manufacturer monthlyStartingPrice } }Affiliate-supportedIndependent editorialWe never sell medicationSee how
Read-only GraphQL endpoint at POST /api/public/graphql. 30 requests / minute / IP. Read-only: mutation and subscription are rejected at the parser.
// Press "Run" to execute the query.Seven root fields. All fields are nullable scalars; nested objects use one-level deep selection. No variables, no fragments, no directives.
List published GLP-1 drugs. Pass slug to fetch a single drug.
{ drugs(limit: 3) { slug name manufacturer monthlyStartingPrice } }Fetch a single drug by slug.
{ drug(slug: "wegovy") { name genericName fdaStatus drugClass { name } } }List published US telehealth providers.
{ providers(limit: 3) { slug name regulatoryStatus transparencyScore } }Fetch a single provider by slug.
{ provider(slug: "novocare") { name monthlyStartingPrice ourScore } }List medical conditions covered by GLP-1 treatments.
{ conditions(limit: 5) { slug name } }GLP-1 × comorbidity drug-interaction pairs. severity ∈ major | moderate | minor | none-known.
{ interactions(brand: "wegovy", severity: "major") { medDisplay severity mechanism } }curl -X POST https://glp1zoom.com/api/public/graphql \
-H "content-type: application/json" \
-d '{"query":"{ drugs(limit:3) { slug name monthlyStartingPrice } }"}'