Check 2-5 drugs against each other using FDA label text: finds where one drug label nam…
Check 2-5 drugs against each other using FDA label text: finds where one drug label names another drug, its ingredients, brands or drug class (SSRI, NSAID, statin...) in interaction, warning or contraindication sections, with excerpts. Reference only, not med…
by Saylor Innovations Knowledge Base · verified provider · updated 2026-09-25
What it does
Check 2-5 drugs against each other using FDA label text: finds where one drug label names another drug, its ingredients, brands or drug class (SSRI, NSAID, statin...) in interaction, warning or contraindication sections, with excerpts. Reference only, not medical advice.
Capabilities
- Check 2-5 drugs against each other using FDA label text: finds where one drug label names another drug, its ingredients, brands or drug class (SSRI, NSAID, statin...) in interaction, warning or contraindication sections, with excerpts. Reference only, not medical advice.
Use it when
- An agent needs live, sourced data it cannot produce from a language model alone; pay per call over x402, no account or API key.
Tags: medical
Use with an agent
- Discover. Agents find this listing with
GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP toolsearch_resources, or/discovery/resources. - Inspect. Fetch
/resources/saylorinnovations-api-medical-interactions.jsonfor the price and payment options. - Pay. Call
GET https://saylorinnovations.com/api/medical/interactions. The provider answers402with its payment requirements. An x402 client signs one of the options below and retries withPAYMENT-SIGNATURE. - Execute. The provider returns
200with the data. Agent Bazaar is not in the request path and never sees your payment.
For humans
You don't need an account or an API key; you need a wallet holding a small amount of USDC or USDT on Solana, Base, Polygon, Arbitrum One, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.
Pricing & payment
- Price
- $0.003 / request
- Protocol
- x402 v2
- Auth
- No account or API key. Pay per request.
- Networks
- Solana, Base, Polygon, Arbitrum One
x402 payment requirements
| Scheme | Network | Asset | Amount | Pay to | Timeout |
|---|---|---|---|---|---|
| exact | Solana solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp | USDC | $0.003 | 7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7 | 120s |
| exact | Solana solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp | USDT | $0.003 | 7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7 | 120s |
| exact | Base eip155:8453 | USDC | $0.003 | 0xf8A376eBF123D7252cd7b66bcD77A727a4def22f | 120s |
| exact | Polygon eip155:137 | USDC | $0.003 | 0xf8A376eBF123D7252cd7b66bcD77A727a4def22f | 120s |
| exact | Arbitrum One eip155:42161 | USDC | $0.003 | 0xf8A376eBF123D7252cd7b66bcD77A727a4def22f | 120s |
accepts[] (raw JSON)
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "3000",
"amountUsd": 0.003,
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
"asset": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"amount": "3000",
"amountUsd": 0.003,
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"amountUsd": 0.003,
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "3000",
"amountUsd": 0.003,
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "3000",
"amountUsd": 0.003,
"maxTimeoutSeconds": 120
}
]Examples
curl "https://saylorinnovations.com/api/medical/interactions"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paidconst res = await fetch("https://saylorinnovations.com/api/medical/interactions");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}import httpx
res = httpx.get("https://saylorinnovations.com/api/medical/interactions")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerDetails
- Provider
- Saylor Innovations Knowledge Base
- Endpoint
- https://saylorinnovations.com/api/medical/interactions
- License
- Commercial — pay-per-request via x402
- Machine-readable
/resources/saylorinnovations-api-medical-interactions.json