llms.txt Content
# Starveri API
OpenAI-compatible GPT and Codex chat completions API with public model discovery, prepaid credits, bounded code tools, and 1/3 OpenAI-style API pricing.
## Primary URLs
- Documentation: https://api.starveri.net/docs
- OpenAPI: https://api.starveri.net/openapi.yaml
- OpenAPI JSON: https://api.starveri.net/openapi.json
- APIs.json: https://api.starveri.net/apis.json
- Credits and keys: https://api.starveri.net/credits
- Public models: https://api.starveri.net/models
- Base URL: https://api.starveri.net
## Key Endpoints
- GET /models - public canonical model IDs, 1/3 OpenAI-style price metadata, and non-billable global model spec metadata.
- GET /v1/models - authenticated model discovery for API clients.
- POST /v1/chat/completions - OpenAI-compatible chat completions.
- POST /v1/demo/chat - free GPT 5.5 no-reasoning text demo with moderation, five requests, 2,000 demo tokens, IP-based limits, no files, no images, and one concurrent request.
## Model Families
- GPT 5.1 Codex
- GPT 5.3 Codex Spark
- GPT 5.3 Codex
- GPT 5.4
- GPT 5.4 Mini
- GPT 5.5
Use /models as the public source of truth for current canonical model IDs, context limits, pricing metadata, and non-billable global model spec metadata.
OpenAPI Spec (preview)
openapi: 3.0.3
info:
title: Starveri API
version: "1.0.0"
description: OpenAI-compatible Starveri API for chat completions, model discovery, prepaid credit discovery, and priced tool usage.
servers:
- url: https://api.starveri.net/v1
description: Starveri production API
security:
- bearerAuth: []
tags:
- name: Models
- name: Billing
- name: Chat Completions
paths:
/models:
get:
tags:
- Models
summary: List available Starveri API models and pricing.