API Access Point

AI gateway

One endpoint for every model your product calls.

API Access Point sits between a software product and the model vendors behind it. It optimises the prompt, routes to the cheapest model that can meet the goal, meters the real cost of the call, and validates the answer against what was asked — through a single request.

Routed, not forwarded

Every request is classified and priced before it is sent. The platform picks the model, within the effort ceiling and the model allowlist granted to that product — the caller never names one.

Metered to the nanodollar

Provider cost, revenue, profit and realised margin are recorded on every single call. Not sampled, and not reconstructed from an invoice at the end of the month.

Answered, then checked

The original intent is recovered from a journal keyed by prompt ID and the output is scored against it, so a response that missed the question is visible as one.

Two halves to every key

A product authenticates with an API key and a granted domain. A valid key presented from anywhere else is refused, so a leaked credential is not on its own enough to spend.

The request

POST https://api.apiaccesspoint.com/v1/invoke
Authorization: Bearer <your key>

{
  "capability": "text.summarize",
  "prompt": "Summarise the attached incident report."
}

The response carries the output, the tokens deducted, the balance remaining and the validation verdict.