Pricing Manifest

Programmatic pricing manifest for current Om API routes.

GET/v2/pricing

Pricing Manifest

Return the live pricing manifest keyed by endpoint path.

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>
      }
    }
  ]
}
  • This route is authenticated.
  • Use it when your application needs current pricing by route.
  • Use customer-facing pricing pages for browsing and `/v2/pricing` for programmatic checks.
  • This example shows the response format; live values vary.