Pricing Manifest

Programmatic pricing manifest for current Om API routes and product pricing.

GET/v2/pricing

Pricing Manifest

Return the current pricing manifest keyed by endpoint path, plus DB-owned product pricing and active 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
      }
    ]
  }
}
  • This route is authenticated.
  • Use it when your application needs the current endpoint-to-price mapping, LULA product-route usage rates, DB-owned product pricing, or active Hub pricing metadata.
  • 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(...).
  • Account-scoped workflows are intentionally excluded from /v2/pricing; use account-accessible product surfaces for generated-data-scoped capabilities.
  • Use customer-facing pricing pages for browsing and /v2/pricing for programmatic checks.
  • This example is illustrative of response shape; current values vary.