Skip to Content
Introduction

What is PlainField

PlainField is a hosted LLM gateway and observability platform. You point your application at one endpoint, and PlainField proxies the request to any provider (OpenAI, Anthropic, Google, and more), logs it, estimates its cost, and shows that data in your dashboard.

You do not run or operate anything. Create an account, generate an API key, and send requests — PlainField runs the gateway for you at https://api.plainfield-ai.com.

The fastest path

Send your first request in under five minutes:

curl -X POST https://api.plainfield-ai.com/ai/chat/completions \ -H 'Authorization: Bearer pt_live_...' \ -H 'Content-Type: application/json' \ -d '{ "model": "openai/gpt-4o-mini", "messages": [{"role": "user", "content": "Hello!"}] }'

Replace pt_live_... with a key you create in the dashboard. Full walkthrough: Quickstart.

How it works

  1. Your app sends an OpenAI-format request to the gateway with your PlainField API key.
  2. The gateway forwards it to the right provider and returns the response.
  3. In the background, PlainField records the request — tokens, latency, and estimated cost — and makes it visible in your dashboard.

What you get

CapabilityWhat it means for you
One endpointCall 100+ models from many providers through a single OpenAI-compatible API.
Cost trackingEvery request is priced automatically. See spend by model and prompt in your dashboard.
ObservabilityLatency, token counts, and full request logs in your dashboard.
Your keys or oursUse PlainField’s managed provider access, or bring your own provider keys.

Find your way

Attribution

The gateway is built on the Helicone AI Gateway  (GPL v3.0), with cost estimation, API-key authentication, and a logs and costs REST API added.

Last updated on