One API. Thousands of tools

1,000+ tools your agent can call over HTTP or MCP: search, convert, generate, validate, and more.

REST + MCP1,000+ toolsTested & maintainedOpenAPI docs

What your agent can do

From web search and document generation to data conversion and validation. A sample of what's available.

Search & Research

Search the web, pull news on any topic, or extract metadata from a URL.

/tools/search/tools/news/tools/extract-url-metadata

Documents & Files

Generate PDFs from HTML, convert Markdown to a document, or fill a template.

/tools/html-to-pdf/tools/markdown-to-html/tools/fill-template

Media & Graphics

Generate SVG icons by name, produce QR codes, or capture screenshots of any URL.

/tools/svg-icon/tools/qr-code/tools/screenshot

Text & Language

Summarize long content, detect language, run sentiment analysis, or extract keywords.

/tools/summarize/tools/detect-language/tools/sentiment

Data & Conversion

Convert CSV to JSON, encode or decode strings, or slugify user input.

/tools/csv-to-json/tools/encode/tools/slugify

Finance & Time

Convert currencies at live rates, parse date strings, or translate between timezones.

/tools/currency-convert/tools/date-parse/tools/timezone-convert

Validation

Validate email addresses, check if URLs are reachable, or verify phone number formats.

/tools/validate-email/tools/validate-url/tools/validate-phone

Code & Dev

Format code, minify CSS or JS, or validate JSON against a schema.

/tools/format-code/tools/minify/tools/json-validate

Two ways to connect

Call any endpoint directly over HTTP. Or configure an MCP client once and your agent auto-discovers every available tool with no additional setup required.

via REST API
curl -X POST https://api.bigapi.ai/tools/search \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "Q3 2025 EV sales data", "limit": 5}'
via MCP — agent discovers all tools
// claude_desktop_config.json
// Your agent auto-discovers every available tool.
{
  "mcpServers": {
    "bigapi": {
      "url": "https://api.bigapi.ai/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

Sample endpoints

Every endpoint accepts JSON and returns JSON. Authenticated with X-API-Key.

Browse all in the docs →
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": 9, "reading_time_label": "2s", ... }
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 SVG icons by name. 20+ icons, customizable size and color.

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

How it works

Three steps and you're making API calls.

01

Create an account

Takes under a minute. Your account is ready immediately.

02

Get an API key

Generate a named key from your dashboard. Pass it as the X-API-Key header on every request.

03

Start calling tools

Hit any /tools/* endpoint over HTTP, or point an MCP-compatible client at https://api.bigapi.ai/mcp and it will auto-discover every available tool.

Pricing

Straightforward pricing. No seat fees, no per-endpoint fees.

Starter

$0/ month
  • 1,000 requests / month
  • Access to all tools
  • MCP + REST access
  • OpenAPI docs
  • Community support
Get started

Pro

Most popular
$29/ month
  • 50,000 requests / month
  • Access to all tools
  • MCP + REST access
  • OpenAPI docs
  • Priority support
  • Usage analytics
Start with Pro

Ready to build?

Your agent can make its first call in under five minutes.

Get started →