Neosantara - Fast, low latency API access to state-of-the-art models

Introducing Neosantara on Vercel Marketplace Integration

Gain access to a variety of powerful models such as Claude 4, Gemini 3, and more — all delivered with speed and scalability.

Neosantara is built with broad support for leading AI frameworks including Claude Code, OpenAI, and other open-source ecosystems such as AG2, Dspy, and LangChain.

Get Started

  • Install Neosantara from the Vercel Marketplace:
    Neosantara for Vercel
  • After installation, you can use it with your preferred SDK — whether it’s ai-sdk or OpenAI SDK — through the provided libraries

Here’s an example of how to use it:

AI Sdk

Install the AI Sdk first: see more details

npm i ai @ai-sdk/openai
import { openai } from '@ai-sdk/openai';
import { generateText } from 'ai';

const { text } = await generateText({
  model: openai.chat('gemini-3-flash-preview'),
  prompt: 'Explain the culture of Indonesia.',
});

console.log(text)

OpenAI

Install the OpenAI Sdk: see more details

npm i openai
import OpenAI from "openai";
const client = new OpenAI();

const response = await client.responses.create({
  model: "claude-3-haiku",
  input: "Write a short bedtime story about a unicorn.",
});

console.log(response.output_text);
Notes

[1] If you install Neosantara via the Vercel Marketplace integration, you can use it directly as shown in the examples above. Otherwise, you will need to manually configure the baseURL and apiKey. Please refer to our documentation for detailed setup instructions.

Dashboard

You can monitor your usage through the Neosantara dashboard: https://app.neosantara.xyz/usage

Browse available models and view detailed model information here:
https://app.neosantara.xyz/models


Conclusion

We’re excited to see what you build with Neosantara.
If you have questions or would like to share your integration, feel free to reach out to us at
support@neosantara.xyz


  1. Footnotes ↩︎