Skip to Content
API GuidesResponses APIOverview

Responses API Overview

Responses API Beta

OpenAI-compatible Responses API (Beta)

Stateless Only

This API is stateless - each request is independent and no conversation state is persisted between requests. You must include the full conversation history in each request.

novastack

’s Responses API Beta provides OpenAI-compatible access to multiple AI models through a unified interface, designed to be a drop-in replacement for OpenAI’s Responses API. This stateless API offers enhanced capabilities including reasoning, tool calling, and web search integration, with each request being independent and no server-side state persisted.

Base URL

Authentication

All requests require authentication using your novastack API key:

responses-overview-01.js
const response = await fetch("https://novapai.ai/api/v1/responses", { method: "POST", headers: { Authorization: "Bearer YOUR_NOVASTACK_AI_API_KEY", "Content-Type": "application/json", }, body: JSON.stringify({ model: "openai/o4-mini", input: "Hello, world!", }), });

Core Features

Basic Usage 

Learn the fundamentals of making requests with simple text input and handling responses.

Reasoning 

Access advanced reasoning capabilities with configurable effort levels and encrypted reasoning chains.

Tool Calling 

Integrate function calling with support for parallel execution and complex tool interactions.

Enable web search capabilities with real-time information retrieval and citation annotations.

Error Handling

The API returns structured error responses:

responses-overview-02.json
{ "error": { "code": "invalid_prompt", "message": "Missing required parameter: 'model'." }, "metadata": null }

For comprehensive error handling guidance, see Error Handling .

Rate Limits

Standard novastack rate limits apply. See API Limits  for details.