Pricing & Wallet Credits

Wallet Credit pricing for supported pay-as-you-go Om usage and Generated Data access requirements.

Wallet Credits are used for supported pay-as-you-go Om usage, including API, MCP, Diligence, Hub job requests, and molecule-scoring workflows where configured. 1 Wallet Credit = $0.01 USD. Molecule-scoring product routes expose usage_pricing in /v2/pricing; read unit_quantity and unit_cents as the current price based on molecules scored. /v2/datasets/catalog is a discovery call and does not deduct Wallet Credits. /v2/data-access/shards returns Generated Data exports when your account has qualifying Data Generation output for the requested protein_uuid. Shard access does not charge Wallet Credits per row.

GET/v2/pricing

Pricing Manifest

Return the current pricing manifest keyed by endpoint path, plus DB-owned product pricing and broad public Hub model availability.

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>
      }
    },
    {
      "endpoint_pattern": "/v2/lula1/score",
      "base_cost_cents": 1,
      "usage_pricing": {
        "quantity_field": "n",
        "unit_quantity": 1000000,
        "unit_cents": 2000,
        "minimum_cents": 1
      }
    },
    {
      "endpoint_pattern": "/v2/lula2/score",
      "base_cost_cents": 1,
      "usage_pricing": {
        "quantity_field": "n",
        "unit_quantity": 1000000,
        "unit_cents": 4000,
        "minimum_cents": 1
      }
    }
  ],
  "products": {
    "data_generation": {
      "usage_type": "data_generation_extra",
      "plan_prices": {
        "starter": {
          "unit_price_cents": <integer>,
          "base_unit_price_cents": <integer>,
          "currency": "usd"
        }
      }
    },
    "molecule_fulfillment": {
      "usage_type": "molecule_fulfillment_standard",
      "provider_policy": {
        "provider": "onepot"
      },
      "plan_prices": {
        "starter": {
          "unit_price_cents": <integer>,
          "base_unit_price_cents": <integer>,
          "currency": "usd"
        }
      }
    },
    "hub_models": [
      {
        "model_key": "diffdock",
        "job_type": "hub.diffdock",
        "endpoint_pattern": "/v2/hub/diffdock/start",
        "pricing_cents": 105,
        "mode_pricing": null
      }
    ]
  }
}
  • GET /v2/pricing requires authentication via x-api-key or Authorization: Bearer <OAuth access token>.
  • pricing includes the current LULA product-route usage rates; products adds plan-specific Data Generation and Molecule Fulfillment pricing plus active Hub model availability.
  • For molecule-scoring workflows, usage-pricing metadata defines the current Wallet Credit price based on molecules scored.
  • For new LULA integrations, use the product routes /v2/lula1/score and /v2/lula2/score, or the SDK helpers client.lula1.score(...) and client.lula2.score(...).
  • GET /v2/health is the public route if you need an unauthenticated smoke check.
  • This example is illustrative of response shape; current 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 Generated Data metadata and current access indicators.

No Wallet Credits charge
/v2/data-access/shards

Return signed Parquet shard URLs when your account has qualifying Data Generation output for the requested Generated Data snapshot.

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 current API pricing checks. Wallet Credits and Generated Data access are applied separately at request time.