MCP-native · AI-ready · REST API

Every tool your
AI agent needs

Big API is a growing library of powerful utility endpoints. Call them from your own code, or let any AI agent discover and use them via the Model Context Protocol.

#Connect an AI agent via MCP
mcp: https://api.bigapi.ai/mcp
headers: X-API-Key: bapi_••••••••

Available endpoints

All endpoints accept JSON and require an X-API-Key header.

POST/tools/spell-check

Spell Check

Find misspelled words and get suggested corrections for any block of text.

{ "text": "The quik brown fox jumpd over." }
{ "misspelling_count": 2, "is_correct": false, ... }
POST/tools/markdown-to-html

Markdown → HTML

Convert Markdown to sanitized HTML. Supports tables, fenced code blocks, and more.

{ "markdown": "# Hello\n\n**World**" }
{ "html": "<h1>Hello</h1>\n<p><strong>World</strong></p>" }
POST/tools/text-stats

Text Stats

Analyze any text: word count, sentence count, paragraphs, and reading time.

{ "text": "The quick brown fox..." }
{ "word_count": 5, "reading_time_label": "1s", ... }
POST/tools/slugify

Slugify

Convert any text into a clean, URL-safe slug. Handles unicode and special characters.

{ "text": "Hello World! Héllo?" }
{ "slug": "hello-world-hello" }
POST/tools/svg-icon

SVG Icon

Generate production-ready SVG icons by name. 20+ icons, fully customizable.

{ "name": "star", "size": 24, "color": "#fff" }
{ "svg": "<svg ...><polygon .../></svg>" }

How it works

01

Create an account

Sign up for free in under 30 seconds. No credit card required.

02

Get your API key

Generate a key from your dashboard. Use it in the X-API-Key header.

03

Call any endpoint

Use the REST API directly, or connect an AI agent via the MCP endpoint.

Ready to build?

Free to start. No credit card required.

Create free account →