Pricing & Wallet Credits

USD pricing for pay-as-you-go API usage and dataset access requirements.

Wallet Credits are used for pay-as-you-go API usage, primarily Diligence. `/v2/datasets/catalog` is a discovery call and does not deduct Wallet Credits. `/v2/data-access/shards` returns dataset exports when your account has the required access. Public datasets require an active subscription or qualifying buyout. Private datasets require a qualifying owned data-generation order for the requested `protein_uuid`. Shard access does not charge Wallet Credits per row.

GET/v2/pricing

Pricing Manifest

Return the live pricing manifest keyed by endpoint path. Use this when your application needs current API pricing.

cURL
curl https://api.omtx.ai/v2/pricing \
  -H "x-api-key: YOUR_API_KEY"
Response
{
  "pricing": [
    {
      "endpoint_pattern": "/v2/diligence/search",
      "base_cost_cents": <integer>,
      "metered_fields": null
    },
    {
      "endpoint_pattern": "/v2/diligence/deep-diligence",
      "base_cost_cents": <integer>,
      "metered_fields": null,
      "default_preset": "quick",
      "preset_cost_cents": {
        "quick": <integer>,
        "deep": <integer>,
        "deeper": <integer>,
        "deepest": <integer>
      }
    }
  ]
}
  • `GET /v2/pricing` requires `x-api-key`.
  • `GET /v2/health` is the public route if you need an unauthenticated smoke check.
  • This example shows the response format; live values vary.
/v2/diligence/deep-diligence

Iterative claim-driven diligence workflow (asynchronous).

/v2/diligence/synthesizeReport

Synthesize report outputs by gene_key (asynchronous).

/v2/diligence/search

Search and rank sources for a query.

/v2/diligence/gather

Search + crawl + summarize sources.

/v2/diligence/crawl

Crawl a URL and return full + filtered text.

/v2/diligence/gene-keys

List gene keys with validated claims.

Free
/v2/datasets/catalog

Browse dataset metadata and current access indicators.

No Wallet Charge
/v2/data-access/shards

Return signed Parquet shard URLs when your account has access to the requested dataset (active subscription or qualifying buyout for public datasets; qualifying owned data-generation order for private datasets).

Access Required
/v2/credits

Read available Wallet Credits from `/v2/credits` (no charge).

Free
/v2/health

Service health and version info.

Free

Use `/v2/pricing` for live API pricing checks. Wallet Credits and dataset access are applied separately at request time.