Get API
Back to Marketplace
🤖
Freemiumv1.4.0⭐ Featured API

NeuralText AI

AI & Machine Learning Infrastructure

NeuralText AI exposes a chat-completion endpoint plus streaming support. Fine-tune on your own data, use our built-in prompt templates, and leverage structured JSON output mode. Supports 40+ languages, 128k context window, and comes with a TypeScript & Python SDK.

RESTTypeScript SDKStreamingOpenAPINode.js
https://api.neuraltext.ai/v1
Trust Score

4.9 / 5

312 dev notes

Live Uptime

99.98%

Guaranteed SLA

Avg Latency

180ms

Global Edge

API Traffic

8.4M

monthly average

Available Endpoints

POST/chat/completionsGenerate text with a chat model
POST/completionsRaw completion endpoint
POST/embeddingsGenerate vector embeddings
GET/modelsList available models
Implementation Example
import { NeuralText } from '@getapi/neuraltext';

const client = new NeuralText({ apiKey: process.env.NEURALTEXT_KEY });

const res = await client.chat.completions.create({
  model: 'nt-4-turbo',
  messages: [{ role: 'user', content: 'Summarize this text...' }],
  stream: true,
});

for await (const chunk of res) console.log(chunk.delta.content);

API Access

✓ FREE TIER ACTIVE

First 500 calls are free every month.

Personal$29/mo
Team$79/mo
Enterprise$299/mo
Technical Docs

API Provider

Priya Sharma

Priya Sharma

NLP researcher shipping language AI via REST APIs.