AI API Latency Test
Latency Test Checks if it feels fast. API Validator Checks if it works. Compatible Checker Checks if it looks like OpenAI.

OpenAI Compatible API Checker

Use this checker when an endpoint claims to be OpenAI-compatible and you want to verify the practical parts: model listing, chat completions, response shape, and streaming behavior.

What Compatibility Means

Compatibility means the endpoint accepts OpenAI-style request payloads, returns choices in a familiar shape, supports /v1/models, and can stream server-sent events when stream is set to true.

Who Should Use It

This page is useful for AI relay users, proxy buyers, API gateway builders, and developers who want to switch providers without rewriting their OpenAI client code.

Compatibility vs Speed

A compatible endpoint is not always a good endpoint. It can pass the format test and still have slow TTFT, unstable streaming, or long total response time. That is why the main tool checks latency alongside compatibility.

FAQ

What is an OpenAI-compatible API?

It is an API that follows common OpenAI endpoint paths and payload shapes, so OpenAI client libraries can often connect to it.

Does compatible mean official OpenAI?

No. Many relays, proxies, and gateways are compatible with the OpenAI API shape but are not official OpenAI services.

Why does chat work but streaming fail?

Some providers implement normal chat completions but do not correctly support SSE streaming chunks.

Can compatibility pass while latency is slow?

Yes. Compatibility checks the API shape. Latency checks the user experience.