{
  "meta": {
    "category": "ai",
    "label": "AI & LLM",
    "icon": "🤖",
    "color": "#818cf8",
    "count": 90,
    "generated": "2026-03-30T23:25:37.733Z",
    "source": "https://apimap.dev"
  },
  "apis": [
    {
      "id": "openai",
      "name": "OpenAI API",
      "provider": "OpenAI",
      "category": "ai",
      "description": "Access GPT-5, GPT-4.1, GPT-4o, o3, o4-mini, DALL·E, Whisper, and text embeddings for any AI-powered application.",
      "longDescription": "OpenAI provides state-of-the-art AI models via a unified REST API. GPT-4o handles text, vision, and audio; o1 excels at advanced reasoning; DALL·E 3 generates and edits images; Whisper transcribes speech; and embedding models power semantic search and retrieval.",
      "color": "#10a37f",
      "tags": [
        "gpt-4o",
        "o1",
        "vision",
        "embeddings",
        "images",
        "audio"
      ],
      "authType": "bearer",
      "authDescription": "Pass your API key as a Bearer token in the Authorization header. Keys are prefixed with sk-.",
      "authExample": "Authorization: Bearer sk-proj-...",
      "baseUrl": "https://api.openai.com/v1",
      "docsUrl": "https://platform.openai.com/docs",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 500,
          "unit": "credit-cents",
          "period": "signup",
          "note": "$5 free credit for new accounts"
        },
        "tiers": [
          {
            "name": "PAYG",
            "monthlyCents": 0,
            "included": "No minimum, pay per token"
          },
          {
            "name": "Plus ($20)",
            "monthlyCents": 2000,
            "included": "$20/mo for ChatGPT Plus (not API)"
          }
        ],
        "unitCost": {
          "amountCents": 250,
          "per": 1000000,
          "unit": "input tokens (GPT-4o)"
        },
        "details": "GPT-4o: $2.50/M input, $10/M output. GPT-4.1: $2/M in, $8/M out. GPT-5: $1.25/M in, $10/M out. o3: $2/M in, $8/M out. o4-mini: $1.10/M in, $4.40/M out. GPT-4o mini: $0.15/M in, $0.60/M out. Batch API: 50% off."
      },
      "rateLimit": "3,500 RPM · 200,000 TPM (Tier 1)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat/completions",
          "description": "Generate chat completions (GPT-4o, o1, etc.)"
        },
        {
          "method": "POST",
          "path": "/embeddings",
          "description": "Create vector embeddings from text"
        },
        {
          "method": "POST",
          "path": "/images/generations",
          "description": "Generate images with DALL·E 3"
        },
        {
          "method": "POST",
          "path": "/images/edits",
          "description": "Edit existing images using a mask"
        },
        {
          "method": "POST",
          "path": "/audio/transcriptions",
          "description": "Transcribe audio files with Whisper"
        },
        {
          "method": "POST",
          "path": "/audio/speech",
          "description": "Convert text to speech (TTS)"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List all available models"
        }
      ],
      "sampleRequest": "curl https://api.openai.com/v1/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $OPENAI_API_KEY\" \\\n  -d '{\n    \"model\": \"gpt-4o\",\n    \"messages\": [\n      {\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},\n      {\"role\": \"user\", \"content\": \"Say hello!\"}\n    ],\n    \"max_tokens\": 100\n  }'",
      "sampleResponse": "{\n  \"id\": \"chatcmpl-abc123\",\n  \"object\": \"chat.completion\",\n  \"model\": \"gpt-4o-2024-08-06\",\n  \"choices\": [{\n    \"index\": 0,\n    \"message\": {\n      \"role\": \"assistant\",\n      \"content\": \"Hello! How can I help you today?\"\n    },\n    \"finish_reason\": \"stop\"\n  }],\n  \"usage\": {\n    \"prompt_tokens\": 20,\n    \"completion_tokens\": 9,\n    \"total_tokens\": 29\n  }\n}",
      "scoreDepth": 86,
      "scoreLatency": 50,
      "scorePricing": 75,
      "score": 72,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:50.246Z",
      "verifiedStatus": 404,
      "latencyMs": 117
    },
    {
      "id": "anthropic",
      "name": "Claude API",
      "provider": "Anthropic",
      "category": "ai",
      "description": "Claude Opus 4.6, Sonnet 4.6, and Haiku 4.5 — frontier models with long context, vision, tool use, and computer use.",
      "longDescription": "Anthropic's Claude API provides access to the Claude 4.x family of models. Claude Sonnet 4.6 is ideal for most tasks; Claude Opus 4.6 handles the most complex reasoning; Claude Haiku 4.5 is fastest and most affordable. All models support extended context windows, vision inputs, tool use, and computer use. Batch API (50% off) and prompt caching (90% off cached inputs) are available.",
      "color": "#d97757",
      "tags": [
        "claude-sonnet-4-6",
        "tool-use",
        "vision",
        "200k-context",
        "computer-use"
      ],
      "authType": "api-key",
      "authDescription": "Pass your Anthropic API key in the x-api-key header. Also include the anthropic-version header.",
      "authExample": "x-api-key: sk-ant-api03-...\nanthropic-version: 2023-06-01",
      "baseUrl": "https://api.anthropic.com/v1",
      "docsUrl": "https://docs.anthropic.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": null,
        "tiers": [
          {
            "name": "PAYG",
            "monthlyCents": 0,
            "included": "No minimum, pay per token"
          }
        ],
        "unitCost": {
          "amountCents": 100,
          "per": 1000000,
          "unit": "input tokens (Haiku 4.5)"
        },
        "details": "Claude Haiku 4.5: $1/M input, $5/M output. Claude Sonnet 4.6: $3/M in, $15/M out. Claude Opus 4.6: $5/M in, $25/M out. Batch API: 50% off. Prompt caching: 90% off cached inputs."
      },
      "rateLimit": "2,000 RPM · 160,000 TPM (default)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/messages",
          "description": "Send a message and receive a response"
        },
        {
          "method": "POST",
          "path": "/messages (streaming)",
          "description": "Stream response tokens as SSE"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List available Claude models"
        }
      ],
      "sampleRequest": "curl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-3-5-sonnet-20241022\",\n    \"max_tokens\": 1024,\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"What is the capital of France?\"}\n    ]\n  }'",
      "sampleResponse": "{\n  \"id\": \"msg_01XFDUDYJgAACzvnptvVoYEL\",\n  \"type\": \"message\",\n  \"role\": \"assistant\",\n  \"content\": [{\n    \"type\": \"text\",\n    \"text\": \"The capital of France is Paris.\"\n  }],\n  \"model\": \"claude-3-5-sonnet-20241022\",\n  \"stop_reason\": \"end_turn\",\n  \"usage\": {\n    \"input_tokens\": 14,\n    \"output_tokens\": 10\n  }\n}",
      "scoreDepth": 66,
      "scoreLatency": 50,
      "scorePricing": 75,
      "score": 64,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:50.257Z",
      "verifiedStatus": 404,
      "latencyMs": 119
    },
    {
      "id": "google-gemini",
      "name": "Gemini API",
      "provider": "Google DeepMind",
      "category": "ai",
      "description": "Gemini 2.5 Pro and Gemini 2.5 Flash for multimodal reasoning, code, and long-context tasks.",
      "longDescription": "Google's Gemini API provides access to Gemini 2.5 Pro and Gemini 2.5 Flash — Google's latest multimodal AI models. Supports text, images, audio, video, and code with up to 2M token context windows. Integrated with Google Search grounding for real-time information access. Note: Gemini 2.0 Flash is deprecated and will be shut down June 1, 2026.",
      "color": "#4285f4",
      "tags": [
        "gemini-2.5-flash",
        "multimodal",
        "2M-context",
        "grounding",
        "code"
      ],
      "authType": "api-key",
      "authDescription": "Pass your Google API key as a query parameter or in the x-goog-api-key header.",
      "authExample": "x-goog-api-key: AIzaSy...",
      "baseUrl": "https://generativelanguage.googleapis.com/v1beta",
      "docsUrl": "https://ai.google.dev/gemini-api/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "15 RPM · 1M TPD (Gemini 2.5 Flash-Lite free tier)"
        },
        "tiers": [],
        "details": "Gemini 2.5 Flash: $0.15/M input, $0.60/M output. Gemini 2.5 Flash-Lite: $0.10/M input, $0.40/M output. Gemini 2.5 Pro: $1.25/M input, $5/M output (>200K context). Batch: 50% off. Note: Gemini 2.0 Flash deprecated, ends June 1, 2026."
      },
      "rateLimit": "15 RPM (free) · 2,000 RPM (paid)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/models/{model}:generateContent",
          "description": "Generate text, multimodal content"
        },
        {
          "method": "POST",
          "path": "/models/{model}:streamGenerateContent",
          "description": "Stream generated content as SSE"
        },
        {
          "method": "POST",
          "path": "/models/{model}:embedContent",
          "description": "Create text embeddings"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List all available models"
        }
      ],
      "sampleRequest": "curl \"https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent\" \\\n  -H \"x-goog-api-key: $GEMINI_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"contents\": [{\n      \"parts\": [{\"text\": \"Explain quantum entanglement simply.\"}]\n    }]\n  }'",
      "sampleResponse": "{\n  \"candidates\": [{\n    \"content\": {\n      \"parts\": [{\"text\": \"Quantum entanglement is when two particles become linked...\"}],\n      \"role\": \"model\"\n    },\n    \"finishReason\": \"STOP\"\n  }],\n  \"usageMetadata\": {\n    \"promptTokenCount\": 9,\n    \"candidatesTokenCount\": 120,\n    \"totalTokenCount\": 129\n  }\n}",
      "scoreDepth": 68,
      "scoreLatency": 50,
      "scorePricing": 75,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:50.267Z",
      "verifiedStatus": 404,
      "latencyMs": 128
    },
    {
      "id": "mistral",
      "name": "Mistral AI API",
      "provider": "Mistral AI",
      "category": "ai",
      "description": "Mistral Medium 3, Small 3.1, Nemo, Codestral, and open-weight models via a simple OpenAI-compatible API.",
      "longDescription": "Mistral AI offers frontier open and commercial models via REST API. Mistral Large 2 rivals top closed models; Codestral specializes in code generation; Mistral Embed handles semantic search. The API is OpenAI-compatible — simply change the base URL and model name.",
      "color": "#ff7000",
      "tags": [
        "mistral-large-2",
        "codestral",
        "openai-compatible",
        "function-calling"
      ],
      "authType": "bearer",
      "authDescription": "Standard Bearer token authentication using your Mistral API key.",
      "authExample": "Authorization: Bearer ...",
      "baseUrl": "https://api.mistral.ai/v1",
      "docsUrl": "https://docs.mistral.ai",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 10,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Experimental models free during preview"
        },
        "tiers": [],
        "details": "Mistral Medium 3: $0.40/M input, $2.00/M output. Mistral Small 3.1: $0.03/M input, $0.11/M output. Mistral Nemo: $0.02/M. Codestral: $0.20/M input, $0.60/M output. Mistral Large 2: $2.00/M input, $6.00/M output. Free experiment plan available."
      },
      "rateLimit": "1 request/s · 500,000 TPM",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat/completions",
          "description": "OpenAI-compatible chat completions"
        },
        {
          "method": "POST",
          "path": "/embeddings",
          "description": "Generate text embeddings"
        },
        {
          "method": "POST",
          "path": "/fim/completions",
          "description": "Fill-in-the-middle for code (Codestral)"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List available models"
        }
      ],
      "sampleRequest": "curl https://api.mistral.ai/v1/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $MISTRAL_API_KEY\" \\\n  -d '{\n    \"model\": \"mistral-large-latest\",\n    \"messages\": [{\"role\": \"user\", \"content\": \"Write a haiku about APIs.\"}]\n  }'",
      "sampleResponse": "{\n  \"id\": \"cmpl-e5cc70bb28c444948073e77776eb30ef\",\n  \"object\": \"chat.completion\",\n  \"model\": \"mistral-large-latest\",\n  \"choices\": [{\n    \"index\": 0,\n    \"message\": {\n      \"role\": \"assistant\",\n      \"content\": \"Keys unlock the gate / Data flows through silent paths / Endpoints never sleep\"\n    },\n    \"finish_reason\": \"stop\"\n  }],\n  \"usage\": {\"prompt_tokens\": 15, \"completion_tokens\": 18}\n}",
      "scoreDepth": 67,
      "scoreLatency": 45,
      "scorePricing": 75,
      "score": 63,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:50.398Z",
      "verifiedStatus": 404,
      "latencyMs": 259
    },
    {
      "id": "stability-ai",
      "name": "Stability AI API",
      "provider": "Stability AI",
      "category": "ai",
      "description": "Stable Diffusion, SDXL, and Stable Video for text-to-image, image-to-image, and video generation.",
      "longDescription": "Stability AI's REST API provides access to Stable Diffusion 3.5, SDXL, and Stable Video Diffusion. Generate high-quality images from text prompts, transform existing images, upscale, remove backgrounds, and generate short video clips.",
      "color": "#7c3aed",
      "tags": [
        "stable-diffusion",
        "SDXL",
        "text-to-image",
        "image-to-image",
        "video"
      ],
      "authType": "bearer",
      "authDescription": "Bearer token authentication using your Stability AI API key.",
      "authExample": "Authorization: Bearer sk-...",
      "baseUrl": "https://api.stability.ai/v2beta",
      "docsUrl": "https://platform.stability.ai/docs/api-reference",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 7,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "25 free credits on signup"
        },
        "tiers": [],
        "details": "Credits: $10 = 1,000 credits. SD3.5 Large: 6.5 credits/image. SDXL 1.0: 0.2 credits/image. Video: 20 credits/clip."
      },
      "rateLimit": "150 requests/10s",
      "endpoints": [
        {
          "method": "POST",
          "path": "/stable-image/generate/sd3",
          "description": "Text-to-image with Stable Diffusion 3.5"
        },
        {
          "method": "POST",
          "path": "/stable-image/generate/core",
          "description": "Core text-to-image generation"
        },
        {
          "method": "POST",
          "path": "/stable-image/upscale/conservative",
          "description": "Upscale an image up to 4x"
        },
        {
          "method": "POST",
          "path": "/stable-image/edit/remove-background",
          "description": "Remove image background"
        },
        {
          "method": "POST",
          "path": "/image-to-video",
          "description": "Generate video from an image"
        }
      ],
      "sampleRequest": "curl https://api.stability.ai/v2beta/stable-image/generate/sd3 \\\n  -H \"Authorization: Bearer $STABILITY_API_KEY\" \\\n  -H \"Accept: image/*\" \\\n  -F prompt=\"A photorealistic mountain lake at golden hour\" \\\n  -F aspect_ratio=\"16:9\" \\\n  -F model=\"sd3.5-large\" \\\n  --output image.png",
      "sampleResponse": "# Returns raw image bytes (PNG/JPEG)\n# Headers include:\nContent-Type: image/png\nStability-Finish-Reason: SUCCESS\nStability-Seed: 3456789",
      "scoreDepth": 74,
      "scoreLatency": 45,
      "scorePricing": 75,
      "score": 66,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:50.594Z",
      "verifiedStatus": 404,
      "latencyMs": 455
    },
    {
      "id": "perplexity",
      "name": "Perplexity AI API",
      "provider": "Perplexity AI",
      "category": "ai",
      "description": "Online LLM with real-time web search grounding — get cited, up-to-date answers from the web.",
      "longDescription": "Perplexity AI's API provides access to its search-augmented language models. Unlike standard LLMs, Perplexity models fetch current web data to ground responses with citations, making them ideal for research, news summarization, and fact-checking workflows. Supports both online models (with live search) and offline models (standard generation). OpenAI-compatible API format.",
      "color": "#1fb8cd",
      "tags": [
        "search",
        "online",
        "citations",
        "real-time",
        "research",
        "llm"
      ],
      "authType": "bearer",
      "authDescription": "Generate an API key in Perplexity Settings → API. Pass it as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer pplx-...",
      "baseUrl": "https://api.perplexity.ai",
      "docsUrl": "https://docs.perplexity.ai",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 20,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "$5 free credits for new accounts"
        },
        "tiers": [],
        "details": "Sonar (online): $1 per 1M input tokens + $5 per 1,000 search queries. Sonar Pro: $3/M input + $5/1k searches. Offline models from $0.20/M tokens."
      },
      "rateLimit": "50 requests/min",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat/completions",
          "description": "Chat completions with optional web search grounding"
        }
      ],
      "sampleRequest": "curl \"https://api.perplexity.ai/chat/completions\" \\\n  -H \"Authorization: Bearer $PERPLEXITY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"sonar\",\"messages\":[{\"role\":\"user\",\"content\":\"What are the latest AI model releases in 2026?\"}]}'",
      "sampleResponse": "{\n  \"id\": \"gen-abc123\",\n  \"model\": \"sonar\",\n  \"choices\": [{\n    \"message\": {\n      \"role\": \"assistant\",\n      \"content\": \"In 2026, notable AI releases include... [1][2]\"\n    }\n  }],\n  \"citations\": [\"https://techcrunch.com/...\", \"https://theverge.com/...\"]\n}",
      "scoreDepth": 52,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:51.784Z",
      "verifiedStatus": 404,
      "latencyMs": 564
    },
    {
      "id": "replicate",
      "name": "Replicate API",
      "provider": "Replicate",
      "category": "ai",
      "description": "Run open-source AI models in the cloud — image generation, video, audio, language, and more.",
      "longDescription": "Replicate makes it easy to run machine learning models with a single API call. Access thousands of open-source models for image generation (SDXL, Flux, ControlNet), video generation (Stable Video Diffusion), audio (Whisper, MusicGen), language (Llama 3, Mistral), and specialized tasks like upscaling, background removal, and object detection. Deploy private models and fine-tunes too.",
      "color": "#000000",
      "tags": [
        "stable-diffusion",
        "llama",
        "image-generation",
        "video",
        "audio",
        "open-source",
        "mlops"
      ],
      "authType": "bearer",
      "authDescription": "Create an API token at replicate.com/account/api-tokens. Pass it as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer r8_...",
      "baseUrl": "https://api.replicate.com/v1",
      "docsUrl": "https://replicate.com/docs",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "No free tier (pay-as-you-go)"
        },
        "tiers": [],
        "details": "Billed by the second per hardware tier: CPU $0.000225/sec, Nvidia T4 $0.0012/sec, A40 $0.0023/sec, A100 $0.0115/sec. Image gen ~$0.003–0.012/image."
      },
      "rateLimit": "No hard limit (scales with your account tier)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/predictions",
          "description": "Run a model and create a prediction"
        },
        {
          "method": "GET",
          "path": "/predictions/{prediction_id}",
          "description": "Get prediction status and output"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List available public models"
        },
        {
          "method": "GET",
          "path": "/models/{owner}/{model_name}",
          "description": "Get model details and latest version"
        },
        {
          "method": "POST",
          "path": "/models/{owner}/{model_name}/versions/{id}/predictions",
          "description": "Run a specific model version"
        }
      ],
      "sampleRequest": "curl \"https://api.replicate.com/v1/predictions\" \\\n  -H \"Authorization: Bearer $REPLICATE_API_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"version\":\"db21e45d3f7023abc2a46ee38a23973f6dce16bb082a930b0c49861f96d1e5bf\",\"input\":{\"prompt\":\"A photo of a cat wearing a beret in Paris\"}}'",
      "sampleResponse": "{\n  \"id\": \"xyz789abc\",\n  \"status\": \"starting\",\n  \"model\": \"stability-ai/sdxl\",\n  \"urls\": {\n    \"get\": \"https://api.replicate.com/v1/predictions/xyz789abc\",\n    \"cancel\": \"https://api.replicate.com/v1/predictions/xyz789abc/cancel\"\n  }\n}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 68,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:51.889Z",
      "verifiedStatus": 401,
      "latencyMs": 650
    },
    {
      "id": "groq",
      "name": "Groq API",
      "provider": "Groq",
      "category": "ai",
      "description": "Ultra-fast LLM inference on custom LPU hardware — run Llama 3.3, Llama 3.1, and other open-source models at 800+ tokens/sec.",
      "longDescription": "Groq runs open-source LLMs at speeds previously impossible: 800+ tokens per second on their custom Language Processing Unit (LPU) hardware. The API is OpenAI-compatible, so any code targeting OpenAI's chat completions endpoint works with a one-line change. Models include Llama 3.3 70B, Llama 3.1 8B, Mixtral 8x7B, and Gemma 2. Ideal for latency-critical applications like voice assistants, real-time chat, and interactive coding tools.",
      "color": "#f55036",
      "tags": [
        "llama",
        "mixtral",
        "fast-inference",
        "open-source",
        "openai-compatible",
        "lpu"
      ],
      "authType": "bearer",
      "authDescription": "Generate an API key at console.groq.com. Pass it as a Bearer token in the Authorization header. The endpoint is OpenAI-compatible.",
      "authExample": "Authorization: Bearer gsk_...",
      "baseUrl": "https://api.groq.com/openai/v1",
      "docsUrl": "https://console.groq.com/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 0,
          "unit": "credit-cents",
          "period": "ongoing",
          "note": "Free tier with rate limits; no credit card required"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "Rate-limited access to all models"
          },
          {
            "name": "PAYG",
            "monthlyCents": 0,
            "included": "Pay per token, higher rate limits"
          }
        ],
        "unitCost": {
          "amountCents": 59,
          "per": 1000000,
          "unit": "input tokens (Llama 3.3 70B)"
        },
        "details": "Llama 3.1 8B Instant: $0.05/M input, $0.08/M output. Llama 3.3 70B Versatile: $0.59/M input, $0.79/M output. Llama 3.1 70B: $0.59/M input, $0.79/M output. Batch API: 50% off."
      },
      "rateLimit": "30 requests/min (free) · Higher on pay-as-you-go",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat/completions",
          "description": "Chat completions (OpenAI-compatible)"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List available models and their context lengths"
        }
      ],
      "sampleRequest": "curl \"https://api.groq.com/openai/v1/chat/completions\" \\\n  -H \"Authorization: Bearer $GROQ_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"llama-3.3-70b-versatile\",\"messages\":[{\"role\":\"user\",\"content\":\"Explain quantum computing in one paragraph.\"}]}'",
      "sampleResponse": "{\n  \"id\": \"chatcmpl-abc123\",\n  \"model\": \"llama-3.3-70b-versatile\",\n  \"choices\": [{\n    \"message\": { \"role\": \"assistant\", \"content\": \"Quantum computing harnesses...\" },\n    \"finish_reason\": \"stop\"\n  }],\n  \"usage\": { \"prompt_tokens\": 18, \"completion_tokens\": 87, \"total_tokens\": 105 },\n  \"x_groq\": { \"id\": \"req_abc\", \"usage\": { \"queue_time\": 0.0002 } }\n}",
      "scoreDepth": 61,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 58,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.597Z",
      "verifiedStatus": 404,
      "latencyMs": 871
    },
    {
      "id": "huggingface",
      "name": "HuggingFace Inference API",
      "provider": "HuggingFace",
      "category": "ai",
      "description": "Run 200,000+ open-source ML models — LLMs, image generation, audio, NLP, and vision — via a single API.",
      "longDescription": "The HuggingFace Inference API gives serverless access to the entire HuggingFace Hub: 200,000+ models for text generation, text classification, summarization, translation, question answering, image generation, image classification, object detection, speech recognition, and audio synthesis. Models range from tiny to frontier-scale. The Inference Endpoints product offers dedicated deployment for production workloads.",
      "color": "#ff9d00",
      "tags": [
        "open-source",
        "transformers",
        "nlp",
        "computer-vision",
        "audio",
        "diffusion",
        "bert",
        "llama"
      ],
      "authType": "bearer",
      "authDescription": "Create a User Access Token at huggingface.co/settings/tokens (read scope is sufficient). Pass it as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer hf_...",
      "baseUrl": "https://api-inference.huggingface.co/models",
      "docsUrl": "https://huggingface.co/docs/api-inference",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": "requests",
          "period": "forever",
          "note": "Rate-limited free inference on public models"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "Rate-limited serverless inference"
          },
          {
            "name": "PRO",
            "monthlyCents": 900,
            "included": "$9/mo, higher limits, ZeroGPU"
          },
          {
            "name": "Endpoints",
            "monthlyCents": 600,
            "included": "Dedicated endpoints from $0.06/hr"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Free: serverless inference on public models (rate-limited). PRO: $9/mo. Dedicated Inference Endpoints from $0.06/hr. Enterprise: custom."
      },
      "rateLimit": "Varies by model and plan (free tier is rate-limited)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/{model_id}",
          "description": "Run any model with task-specific input/output"
        },
        {
          "method": "POST",
          "path": "/openai/v1/chat/completions",
          "description": "OpenAI-compatible chat completions (TGI models)"
        }
      ],
      "sampleRequest": "# Text generation with Llama 3\ncurl \"https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct\" \\\n  -H \"Authorization: Bearer $HF_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"inputs\": \"What is the capital of France?\", \"parameters\": {\"max_new_tokens\": 50}}'",
      "sampleResponse": "[{\n  \"generated_text\": \"What is the capital of France?\nThe capital of France is Paris.\"\n}]",
      "scoreDepth": 66,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.710Z",
      "verifiedStatus": 410,
      "latencyMs": 926
    },
    {
      "id": "cohere",
      "name": "Cohere API",
      "provider": "Cohere",
      "category": "ai",
      "description": "Enterprise-grade LLM API for text generation, RAG, embeddings, and reranking with a focus on accuracy.",
      "longDescription": "Cohere provides production-ready language AI for enterprise teams. Command R+ leads on RAG benchmarks, making it ideal for grounded enterprise search. The Embed v3 model produces high-quality text embeddings for semantic search and retrieval. The Rerank endpoint improves search accuracy by reordering candidate results. All models have built-in tool use (function calling) and citation support for RAG pipelines.",
      "color": "#39594d",
      "tags": [
        "rag",
        "embeddings",
        "rerank",
        "enterprise",
        "command-r",
        "grounding",
        "citations"
      ],
      "authType": "bearer",
      "authDescription": "Create an API key at dashboard.cohere.com. Pass it as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer YOUR_COHERE_API_KEY",
      "baseUrl": "https://api.cohere.com/v2",
      "docsUrl": "https://docs.cohere.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": "requests",
          "period": "trial",
          "note": "Trial key with limited free usage"
        },
        "tiers": [
          {
            "name": "Trial",
            "monthlyCents": 0,
            "included": "Limited trial usage"
          },
          {
            "name": "Production",
            "monthlyCents": 0,
            "included": "No minimum, pay per token/query"
          }
        ],
        "unitCost": {
          "amountCents": 15,
          "per": 100000,
          "unit": "input tokens (Command R)"
        },
        "details": "Command R+: $2.50/M in, $10/M out. Command R: $0.15/M in, $0.60/M out. Command R7B: $0.0375/M in, $0.15/M out. Embed: $0.10/M tokens. Rerank: $2/1k queries."
      },
      "rateLimit": "100 API calls/min (trial) · Higher on production",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat",
          "description": "Chat with Command R / R+ with optional tool use and RAG"
        },
        {
          "method": "POST",
          "path": "/embed",
          "description": "Generate embeddings for semantic search and classification"
        },
        {
          "method": "POST",
          "path": "/rerank",
          "description": "Rerank search results by relevance to a query"
        },
        {
          "method": "POST",
          "path": "/classify",
          "description": "Classify text into predefined categories"
        }
      ],
      "sampleRequest": "curl \"https://api.cohere.com/v2/chat\" \\\n  -H \"Authorization: Bearer $COHERE_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"command-r-plus\",\"messages\":[{\"role\":\"user\",\"content\":\"Summarize the benefits of RAG for enterprise AI.\"}]}'",
      "sampleResponse": "{\n  \"id\": \"abc123\",\n  \"message\": {\n    \"role\": \"assistant\",\n    \"content\": [{\"type\":\"text\",\"text\":\"RAG (Retrieval-Augmented Generation) benefits include...\"}]\n  },\n  \"finish_reason\": \"COMPLETE\",\n  \"usage\": { \"billed_units\": { \"input_tokens\": 24, \"output_tokens\": 112 } }\n}",
      "scoreDepth": 80,
      "scoreLatency": 30,
      "scorePricing": 75,
      "score": 64,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.869Z",
      "verifiedStatus": 401,
      "latencyMs": 1048
    },
    {
      "id": "together-ai",
      "name": "Together AI API",
      "provider": "Together AI",
      "category": "ai",
      "description": "Run 200+ open-source AI models with OpenAI-compatible endpoints, fine-tuning, and serverless inference.",
      "longDescription": "Together AI provides cloud infrastructure for running open-source AI models at scale. The API is fully OpenAI-compatible and supports 200+ models including Llama 3.1 405B, Qwen 2.5, Mistral, DeepSeek, Stable Diffusion, and more. Features include serverless inference (pay per token), dedicated GPU clusters, fine-tuning with LORA, vision models, and function calling. Popular for research, enterprise AI, and teams migrating from proprietary models.",
      "color": "#5b8ef7",
      "tags": [
        "open-source",
        "llama",
        "deepseek",
        "fine-tuning",
        "serverless",
        "openai-compatible",
        "vision"
      ],
      "authType": "bearer",
      "authDescription": "Create an API key at api.together.ai. The endpoint is OpenAI-compatible — pass your key as a Bearer token in the Authorization header.",
      "authExample": "Authorization: Bearer YOUR_TOGETHER_API_KEY",
      "baseUrl": "https://api.together.xyz/v1",
      "docsUrl": "https://docs.together.ai",
      "hasFreeTier": false,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 10,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "$1 free credit on signup"
        },
        "tiers": [],
        "details": "Llama 3.1 8B: $0.18/M · $0.18/M. Llama 3.1 70B: $0.88/M · $0.88/M. Llama 4 Scout: available. DeepSeek R1: $1.25/M · $1.25/M. Image gen: $0.008 per image. No free tier; minimum $5 credit purchase."
      },
      "rateLimit": "60 requests/min (default) · Scales with plan",
      "endpoints": [
        {
          "method": "POST",
          "path": "/chat/completions",
          "description": "Chat completions (OpenAI-compatible)"
        },
        {
          "method": "POST",
          "path": "/completions",
          "description": "Text completions"
        },
        {
          "method": "POST",
          "path": "/embeddings",
          "description": "Generate text embeddings"
        },
        {
          "method": "POST",
          "path": "/images/generations",
          "description": "Image generation (Stable Diffusion, FLUX)"
        },
        {
          "method": "GET",
          "path": "/models",
          "description": "List all available models with pricing"
        },
        {
          "method": "POST",
          "path": "/fine-tunes",
          "description": "Start a fine-tuning job with LoRA"
        }
      ],
      "sampleRequest": "curl \"https://api.together.xyz/v1/chat/completions\" \\\n  -H \"Authorization: Bearer $TOGETHER_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo\",\"messages\":[{\"role\":\"user\",\"content\":\"Write a Python function to parse JSON safely\"}],\"max_tokens\":200}'",
      "sampleResponse": "{\n  \"id\": \"890ab123\",\n  \"model\": \"meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo\",\n  \"choices\": [{\n    \"message\": { \"role\": \"assistant\", \"content\": \"Here's a Python function to safely parse JSON:\n\n```python\nimport json\n\ndef safe_json_parse(data):\n    try:\n        return json.loads(data)\n    except json.JSONDecodeError:\n        return None\n```\" },\n    \"finish_reason\": \"stop\"\n  }],\n  \"usage\": { \"prompt_tokens\": 20, \"completion_tokens\": 68 }\n}",
      "scoreDepth": 86,
      "scoreLatency": 30,
      "scorePricing": 75,
      "score": 66,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.980Z",
      "verifiedStatus": 404,
      "latencyMs": 1091
    },
    {
      "id": "elevenlabs-api-documentation",
      "name": "ElevenLabs API Documentation",
      "provider": "ElevenLabs API Documentation",
      "category": "ai",
      "description": "ElevenLabs provides AI-powered voice synthesis and cloning. Generate natural-sounding speech in 29 languages, clone voices from audio samples, and stream audio in real time.",
      "longDescription": "This is the documentation for the ElevenLabs API. You can use this API to use our service programmatically, this is done by using your xi-api-key. <br/> You can view your xi-api-key using the 'Profile' tab on https://beta.elevenlabs.io. Our API is experimental so all endpoints are subject to change.",
      "color": "#10b981",
      "tags": [
        "ai",
        "voice",
        "text-to-speech",
        "speech synthesis",
        "audio"
      ],
      "authType": "api-key",
      "authDescription": "API key in the xi-api-key request header",
      "authExample": "xi-api-key: YOUR_API_KEY",
      "baseUrl": "https://api.elevenlabs.io/",
      "docsUrl": "https://api.elevenlabs.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10000,
          "unit": "characters",
          "period": "month"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "10,000 chars/mo"
          },
          {
            "name": "Starter",
            "monthlyCents": 500,
            "included": "30,000 chars/mo"
          },
          {
            "name": "Creator",
            "monthlyCents": 2200,
            "included": "100,000 chars/mo"
          },
          {
            "name": "Pro",
            "monthlyCents": 9900,
            "included": "500,000 chars/mo"
          },
          {
            "name": "Scale",
            "monthlyCents": 33000,
            "included": "2,000,000 chars/mo"
          }
        ],
        "details": "Free: 10k chars/mo. Starter $5/mo (30k chars). Creator $22/mo (100k chars). Pro $99/mo (500k chars). Scale $330/mo (2M chars)."
      },
      "rateLimit": "2 concurrent requests (free); up to 10 (paid)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/v1/history",
          "description": "Get Generated Items"
        },
        {
          "method": "POST",
          "path": "/v1/history/delete",
          "description": "Delete History Items"
        },
        {
          "method": "POST",
          "path": "/v1/history/download",
          "description": "Download History Items"
        },
        {
          "method": "DELETE",
          "path": "/v1/history/{history_item_id}",
          "description": "Delete History Item"
        },
        {
          "method": "GET",
          "path": "/v1/history/{history_item_id}/audio",
          "description": "Get Audio From History Item"
        },
        {
          "method": "POST",
          "path": "/v1/text-to-speech/{voice_id}",
          "description": "Text To Speech"
        },
        {
          "method": "POST",
          "path": "/v1/text-to-speech/{voice_id}/stream",
          "description": "Text To Speech"
        },
        {
          "method": "GET",
          "path": "/v1/user",
          "description": "Get User Info"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.elevenlabs.io//v1/history' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.302Z",
      "verifiedStatus": 404,
      "latencyMs": 723
    },
    {
      "id": "powertools-developer",
      "name": "PowerTools Developer",
      "provider": "PowerTools Developer",
      "category": "ai",
      "description": "Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech,",
      "longDescription": "Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech,",
      "color": "#10b981",
      "tags": [
        "ai",
        "apptigent"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (X-IBM-Client-Id)",
      "authExample": "X-IBM-Client-Id: YOUR_API_KEY",
      "baseUrl": "https://connect.apptigent.com/api/utilities",
      "docsUrl": "https://www.apptigent.com/help/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with account. Developer productivity toolset API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "POST",
          "path": "/AddToCollection",
          "description": "Collections - Add to collection"
        },
        {
          "method": "POST",
          "path": "/CSVtoJSON",
          "description": "Data - CSV to JSON"
        },
        {
          "method": "POST",
          "path": "/CalculateAbsolute",
          "description": "Math - Calculate Absolute"
        },
        {
          "method": "POST",
          "path": "/CalculateAddition",
          "description": "Math - Calculate Addition"
        },
        {
          "method": "POST",
          "path": "/CalculateAverage",
          "description": "Math - Calculate average"
        },
        {
          "method": "POST",
          "path": "/CalculateCosine",
          "description": "Math - Calculate Cosine"
        },
        {
          "method": "POST",
          "path": "/CalculateDivision",
          "description": "Math - Calculate Division"
        },
        {
          "method": "POST",
          "path": "/CalculateLogarithm",
          "description": "Math - Calculate Logarithm"
        }
      ],
      "sampleRequest": "curl -X GET 'https://connect.apptigent.com/api/utilities/AddToCollection' \\\n  -H 'X-IBM-Client-Id: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:55.106Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "digitalnz",
      "name": "DigitalNZ API",
      "provider": "DigitalNZ",
      "category": "ai",
      "description": "OpenAPI specification of DigitalNZ's Record API.  \nFor more information about the API see digitalnz.org/developers.  \nTo learn more about the metadata/fields used in the API see the [Metadata Dictionary](https://docs.google.com/document/pub?id=1Z3I_ckQWjnQQ4SzpORb",
      "longDescription": "OpenAPI specification of DigitalNZ's Record API.  \nFor more information about the API see digitalnz.org/developers.  \nTo learn more about the metadata/fields used in the API see the [Metadata Dictionary](https://docs.google.com/document/pub?id=1Z3I_ckQWjnQQ4SzpORb",
      "color": "#10b981",
      "tags": [
        "ai",
        "digitalnz"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (api_key)",
      "authExample": "GET /endpoint?api_key=YOUR_KEY",
      "baseUrl": "https://api.digitalnz.org",
      "docsUrl": "https://api.digitalnz.org",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key. DigitalNZ New Zealand digital heritage collections."
      },
      "rateLimit": "10,000 req/day",
      "endpoints": [
        {
          "method": "GET",
          "path": "/records.{format}",
          "description": "Run queries against DigitalNZ metadata search service."
        },
        {
          "method": "GET",
          "path": "/records/{record_id}.{format}",
          "description": "View metadata associated with a single record."
        },
        {
          "method": "GET",
          "path": "/records/{record_id}/more_like_this.{format}",
          "description": "The \"More Like This\" call returns similar records to the specified ID.\n"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.digitalnz.org/records.{format}' \\\n  -H 'GET /endpoint?api_key=YOUR_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 52,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:04.087Z",
      "verifiedStatus": 200,
      "latencyMs": 6966
    },
    {
      "id": "fire-financial-services-business",
      "name": "Fire Financial Services Business API",
      "provider": "Fire Financial Services Business",
      "category": "ai",
      "description": "The fire.com API allows you to deeply integrate Business Account features into your application or back-office systems.\n\nThe API provides read access to your profile, accounts and transactions, event-driven notifications of activity on the account and payment initiation via batches. Each feature has",
      "longDescription": "The fire.com API allows you to deeply integrate Business Account features into your application or back-office systems.\n\nThe API provides read access to your profile, accounts and transactions, event-driven notifications of activity on the account and payment initiation via batches. Each feature has",
      "color": "#10b981",
      "tags": [
        "ai",
        "fire"
      ],
      "authType": "bearer",
      "authDescription": "Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.fire.com/business",
      "docsUrl": "https://docs.fire.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Fire.com Irish/UK business banking API; pricing per transaction."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/v1/accounts",
          "description": "List all fire.com Accounts"
        },
        {
          "method": "POST",
          "path": "/v1/accounts",
          "description": "Add a new account"
        },
        {
          "method": "GET",
          "path": "/v1/accounts/{ican}",
          "description": "Retrieve the details of a fire.com Account"
        },
        {
          "method": "GET",
          "path": "/v1/accounts/{ican}/transactions",
          "description": "List transactions for an account (v1)"
        },
        {
          "method": "GET",
          "path": "/v1/accounts/{ican}/transactions/filter",
          "description": "Filtered list of transactions for an account (v1)"
        },
        {
          "method": "POST",
          "path": "/v1/apps",
          "description": "Create a new API Application"
        },
        {
          "method": "POST",
          "path": "/v1/apps/accesstokens",
          "description": "Authenticate with the API."
        },
        {
          "method": "GET",
          "path": "/v1/aspsps",
          "description": "Get list of ASPSPs / Banks"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.fire.com/business/v1/accounts' \\\n  -H 'Authorization: Bearer YOUR_TOKEN'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:01.281Z",
      "verifiedStatus": 400,
      "latencyMs": 2942
    },
    {
      "id": "goog-io-unoffical-google-search",
      "name": "goog.io | Unoffical Google Search API",
      "provider": "goog.io | Unoffical Google Search",
      "category": "ai",
      "description": "Intoduction\n\nThis is the OpenAPI V3 documentation for https://api.goog.io\n\nAn API to perform Google Searches. Extremely fast and accurate. Zero proxies. Clean USA IPs.\n\nSimple to use API, but advance enough to support special parameters such as languages, country and geographic locality.\n\nGoogio i",
      "longDescription": "Intoduction\n\nThis is the OpenAPI V3 documentation for https://api.goog.io\n\nAn API to perform Google Searches. Extremely fast and accurate. Zero proxies. Clean USA IPs.\n\nSimple to use API, but advance enough to support special parameters such as languages, country and geographic locality.\n\nGoogio i",
      "color": "#10b981",
      "tags": [
        "ai",
        "goog"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (apikey)",
      "authExample": "apikey: YOUR_API_KEY",
      "baseUrl": "https://api.goog.io",
      "docsUrl": "https://goog.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free unofficial Google Search API. Third-party wrapper; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "Status"
        },
        {
          "method": "GET",
          "path": "/v1/crawl/{query}",
          "description": "Crawl"
        },
        {
          "method": "GET",
          "path": "/v1/images/{query}",
          "description": "Images"
        },
        {
          "method": "GET",
          "path": "/v1/news/{query}",
          "description": "News"
        },
        {
          "method": "GET",
          "path": "/v1/search/{query}",
          "description": "Search"
        },
        {
          "method": "POST",
          "path": "/v1/serp/",
          "description": "SERP"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.goog.io/' \\\n  -H 'apikey: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 64,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 34,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:03.622Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "image-charts",
      "name": "Image-Charts",
      "provider": "Image-Charts",
      "category": "ai",
      "description": "Charts, simple as a URL. A safe and fast replacement for Google Image Charts",
      "longDescription": "Charts, simple as a URL. A safe and fast replacement for Google Image Charts",
      "color": "#10b981",
      "tags": [
        "ai",
        "image-charts"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://image-charts.com/",
      "docsUrl": "https://image-charts.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/chart",
          "description": "Image-Charts API"
        },
        {
          "method": "GET",
          "path": "/chart.js/2.8.0",
          "description": "Chart.js as image API"
        }
      ],
      "sampleRequest": "curl -X GET 'https://image-charts.com//chart' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 33,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:05.225Z",
      "verifiedStatus": 200,
      "latencyMs": 2310
    },
    {
      "id": "languagetool",
      "name": "LanguageTool API",
      "provider": "LanguageTool",
      "category": "ai",
      "description": "Check texts for style and grammar issues with <a href='https://languagetool.org'>LanguageTool</a>. Please consider the following default limitations:<ul><li>your daily request limit depending on <a href='https://languagetool.org/editor/settings/access-tokens'>your plan</a> <li>maximum number of requ",
      "longDescription": "Check texts for style and grammar issues with <a href='https://languagetool.org'>LanguageTool</a>. Please consider the following default limitations:<ul><li>your daily request limit depending on <a href='https://languagetool.org/editor/settings/access-tokens'>your plan</a> <li>maximum number of requ",
      "color": "#10b981",
      "tags": [
        "ai",
        "languagetool"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.languagetoolplus.com/v2",
      "docsUrl": "https://api.languagetoolplus.com/v2",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/check",
          "description": "Check a text"
        },
        {
          "method": "GET",
          "path": "/languages",
          "description": "Get a list of supported languages."
        },
        {
          "method": "GET",
          "path": "/words",
          "description": "List words in dictionaries"
        },
        {
          "method": "POST",
          "path": "/words/add",
          "description": "Add word to a dictionary"
        },
        {
          "method": "POST",
          "path": "/words/delete",
          "description": "Remove word from a dictionary"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.languagetoolplus.com/v2/check' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 64,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:05.279Z",
      "verifiedStatus": 400,
      "latencyMs": 1564
    },
    {
      "id": "motaword",
      "name": "MotaWord API",
      "provider": "MotaWord",
      "category": "ai",
      "description": "Use MotaWord API to post and track your translation projects.",
      "longDescription": "Use MotaWord API to post and track your translation projects.",
      "color": "#10b981",
      "tags": [
        "ai",
        "motaword"
      ],
      "authType": "basic",
      "authDescription": "HTTP Basic Auth — base64-encoded username:password",
      "authExample": "Authorization: Basic BASE64(username:password)",
      "baseUrl": "https://api.motaword.com",
      "docsUrl": "https://api.motaword.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-per-use translation platform. From $0.05/word. Project-based pricing."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "Available endpoints"
        },
        {
          "method": "GET",
          "path": "/async/download",
          "description": "Download result of an async operation"
        },
        {
          "method": "GET",
          "path": "/blogs",
          "description": "Get blog posts - ordered by created desc by default"
        },
        {
          "method": "DELETE",
          "path": "/cache/{key}",
          "description": "Clear cache by key"
        },
        {
          "method": "GET",
          "path": "/commissions",
          "description": "Returns a commission list of current client."
        },
        {
          "method": "POST",
          "path": "/commissions",
          "description": "Returns a commission list of current client."
        },
        {
          "method": "GET",
          "path": "/continuous_projects",
          "description": "View continuous projects"
        },
        {
          "method": "POST",
          "path": "/continuous_projects",
          "description": "Create a continuous project"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.motaword.com/' \\\n  -H 'Authorization: Basic BASE64(username:password)'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:06.508Z",
      "verifiedStatus": 200,
      "latencyMs": 1876
    },
    {
      "id": "odn",
      "name": "ODN API",
      "provider": "ODN",
      "category": "ai",
      "description": "The Socrata OpenDataNetwork (ODN) REST API exposes public data, often continuosly updated and enhanced, from many thousands of public\ngovernment and non profit agencies.\n\nMuch of this data originating from independent sources is fused together to create new, and often\npowerful, entity level data. Th",
      "longDescription": "The Socrata OpenDataNetwork (ODN) REST API exposes public data, often continuosly updated and enhanced, from many thousands of public\ngovernment and non profit agencies.\n\nMuch of this data originating from independent sources is fused together to create new, and often\npowerful, entity level data. Th",
      "color": "#10b981",
      "tags": [
        "ai",
        "opendatanetwork"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://api.opendatanetwork.com",
      "docsUrl": "http://api.opendatanetwork.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/data/v1/availability/",
          "description": "Find all available data for some entities"
        },
        {
          "method": "GET",
          "path": "/data/v1/constraint/{variable}",
          "description": "Get constraint permutations for entities"
        },
        {
          "method": "GET",
          "path": "/data/v1/map/new",
          "description": "Create a map"
        },
        {
          "method": "GET",
          "path": "/data/v1/values",
          "description": "Get values for variables"
        },
        {
          "method": "GET",
          "path": "/entity/v1",
          "description": "Get Entities"
        },
        {
          "method": "GET",
          "path": "/entity/v1/{relation}",
          "description": "Find the relatives of an entity"
        },
        {
          "method": "GET",
          "path": "/search/v1/dataset",
          "description": "Get datasets"
        },
        {
          "method": "GET",
          "path": "/search/v1/question",
          "description": "Get questions"
        }
      ],
      "sampleRequest": "curl -X GET 'http://api.opendatanetwork.com/data/v1/availability/' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:10.019Z",
      "verifiedStatus": 200,
      "latencyMs": 4740
    },
    {
      "id": "transport-for-london-unified",
      "name": "Transport for London Unified API",
      "provider": "Transport for London Unified",
      "category": "ai",
      "description": "Our unified API brings together data across all modes of transport into a single RESTful API. This API provides access to the most highly requested realtime and status infomation across all the modes of transport, in a single and consistent way. Access to the developer documentation is available at",
      "longDescription": "Our unified API brings together data across all modes of transport into a single RESTful API. This API provides access to the most highly requested realtime and status infomation across all the modes of transport, in a single and consistent way. Access to the developer documentation is available at",
      "color": "#10b981",
      "tags": [
        "ai",
        "tfl"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (app_key)",
      "authExample": "GET /endpoint?app_key=YOUR_KEY",
      "baseUrl": "https://api.digital.tfl.gov.uk",
      "docsUrl": "https://api.digital.tfl.gov.uk",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with TfL API key. London transport real-time data; no paid tiers."
      },
      "rateLimit": "500 req/min with API key",
      "endpoints": [
        {
          "method": "GET",
          "path": "/AccidentStats/{year}",
          "description": "Gets all accident details for accidents occuring in the specified year"
        },
        {
          "method": "GET",
          "path": "/AirQuality",
          "description": "Gets air quality data feed"
        },
        {
          "method": "GET",
          "path": "/BikePoint",
          "description": "Gets all bike point locations. The Place object has an addtionalProperties array which contains the nbBikes, nbDocks and nbSpaces\r\n            numbers which give the status of the BikePoint. A mismatch in these numbers i.e. nbDocks - (nbBikes + nbSpaces) != 0 indicates broken docks."
        },
        {
          "method": "GET",
          "path": "/BikePoint/Search",
          "description": "Search for bike stations by their name, a bike point's name often contains information about the name of the street\r\n            or nearby landmarks, for example. Note that the search result does not contain the PlaceProperties i.e. the status\r\n            or occupancy of the BikePoint, to get that information you should retrieve the BikePoint by its id on /BikePoint/id."
        },
        {
          "method": "GET",
          "path": "/BikePoint/{id}",
          "description": "Gets the bike point with the given id."
        },
        {
          "method": "GET",
          "path": "/Cabwise/search",
          "description": "Gets taxis and minicabs contact information"
        },
        {
          "method": "GET",
          "path": "/Journey/JourneyResults/{from}/to/{to}",
          "description": "Perform a Journey Planner search from the parameters specified in simple types"
        },
        {
          "method": "GET",
          "path": "/Journey/Meta/Modes",
          "description": "Gets a list of all of the available journey planner modes"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.digital.tfl.gov.uk/AccidentStats/{year}' \\\n  -H 'GET /endpoint?app_key=YOUR_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:26.972Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "tisane-api-documentation",
      "name": "Tisane API Documentation",
      "provider": "Tisane API Documentation",
      "category": "ai",
      "description": "Tisane is a natural language processing library, providing:\n\n*   standard NLP functionality\n*   special functions for detection of problematic or abusive content\n*   low-level NLP like morphological analysis and tokenization of no-space languages (Chinese, Japanese, Thai)\n    \n\nTisane has monolithic",
      "longDescription": "Tisane is a natural language processing library, providing:\n\n*   standard NLP functionality\n*   special functions for detection of problematic or abusive content\n*   low-level NLP like morphological analysis and tokenization of no-space languages (Chinese, Japanese, Thai)\n    \n\nTisane has monolithic",
      "color": "#10b981",
      "tags": [
        "ai",
        "tisane"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.tisane.ai",
      "docsUrl": "https://api.tisane.ai",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/hypernyms",
          "description": "List hypernyms"
        },
        {
          "method": "GET",
          "path": "/hyponyms",
          "description": "List hyponyms"
        },
        {
          "method": "GET",
          "path": "/inflections",
          "description": "List inflected forms"
        },
        {
          "method": "GET",
          "path": "/lm/family",
          "description": "Get family details"
        },
        {
          "method": "GET",
          "path": "/senses",
          "description": "List word senses"
        },
        {
          "method": "GET",
          "path": "/values",
          "description": "List feature values"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.tisane.ai/hypernyms' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 64,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:20.449Z",
      "verifiedStatus": 404,
      "latencyMs": 3211
    },
    {
      "id": "trapstreet",
      "name": "TrapStreet API",
      "provider": "TrapStreet",
      "category": "ai",
      "description": "The TrapStreet API finds trap streets in Google Maps, Bing Maps and OpenStreetMap data.",
      "longDescription": "The TrapStreet API finds trap streets in Google Maps, Bing Maps and OpenStreetMap data.",
      "color": "#10b981",
      "tags": [
        "ai",
        "trapstreet"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.trapstreet.com",
      "docsUrl": "https://api.trapstreet.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/{address}",
          "description": "GET /{address}"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.trapstreet.com/{address}' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 24,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 18,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:20.280Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "vectara-rest",
      "name": "Vectara REST API",
      "provider": "Vectara REST",
      "category": "ai",
      "description": "Vectara is a neural search platform, built for developers to get the most out of their data.\n\nYou can sign up for an account at https://vectara.com.",
      "longDescription": "Vectara is a neural search platform, built for developers to get the most out of their data.\n\nYou can sign up for an account at https://vectara.com.",
      "color": "#10b981",
      "tags": [
        "ai",
        "vectara"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (x-api-key)",
      "authExample": "x-api-key: YOUR_API_KEY",
      "baseUrl": "https://api.vectara.io",
      "docsUrl": "http://support.vectara.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 50 MB storage, 200 MB queries/month. Pro $299/mo, Enterprise custom."
      },
      "rateLimit": "100 req/min (free)",
      "endpoints": [
        {
          "method": "POST",
          "path": "/v1/create-corpus",
          "description": "Create Corpus"
        },
        {
          "method": "POST",
          "path": "/v1/delete-corpus",
          "description": "Delete Corpus"
        },
        {
          "method": "POST",
          "path": "/v1/delete-doc",
          "description": "Delete"
        },
        {
          "method": "POST",
          "path": "/v1/index",
          "description": "Index"
        },
        {
          "method": "POST",
          "path": "/v1/list-corpora",
          "description": "List Corpora"
        },
        {
          "method": "POST",
          "path": "/v1/query",
          "description": "Query"
        },
        {
          "method": "POST",
          "path": "/v1/reset-corpus",
          "description": "Reset Corpus"
        },
        {
          "method": "POST",
          "path": "/v1/stream-query",
          "description": "Stream Query"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.vectara.io/v1/create-corpus' \\\n  -H 'x-api-key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:21.248Z",
      "verifiedStatus": 404,
      "latencyMs": 1944
    },
    {
      "id": "perfectpdf",
      "name": "perfectpdf api",
      "provider": "perfectpdf",
      "category": "ai",
      "description": "The perfectpdf api does one thing, perfectly: it converts html to pdf. The perfectpdf api uses headless Google Chrome to provide a low cost, high quality, simple to use service.",
      "longDescription": "The perfectpdf api does one thing, perfectly: it converts html to pdf. The perfectpdf api uses headless Google Chrome to provide a low cost, high quality, simple to use service.",
      "color": "#10b981",
      "tags": [
        "ai",
        "scideas"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://services.scideas.net",
      "docsUrl": "https://scideas.net",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/perfectpdf/api",
          "description": "Returns PDF document."
        }
      ],
      "sampleRequest": "curl -X GET 'https://services.scideas.net/perfectpdf/api' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 31,
      "scoreLatency": 8,
      "scorePricing": 28,
      "score": 23,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:45.934Z",
      "verifiedStatus": 200,
      "latencyMs": 8280
    },
    {
      "id": "google-pay-passes",
      "name": "Google Pay Passes API",
      "provider": "Google Pay Passes",
      "category": "ai",
      "description": "API for issuers to save and manage Google Wallet Objects.",
      "longDescription": "API for issuers to save and manage Google Wallet Objects.",
      "color": "#10b981",
      "tags": [
        "ai",
        "walletobjects"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://walletobjects.googleapis.com/",
      "docsUrl": "https://google.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Google developer account. Loyalty cards and event tickets via Google Wallet."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/walletobjects/v1/eventTicketClass",
          "description": "Returns a list of all event ticket classes for a given issuer ID."
        },
        {
          "method": "POST",
          "path": "/walletobjects/v1/eventTicketClass",
          "description": "Inserts an event ticket class with the given ID and properties."
        },
        {
          "method": "GET",
          "path": "/walletobjects/v1/eventTicketClass/{resourceId}",
          "description": "Returns the event ticket class with the given class ID."
        },
        {
          "method": "PATCH",
          "path": "/walletobjects/v1/eventTicketClass/{resourceId}",
          "description": "Updates the event ticket class referenced by the given class ID. This method sup"
        },
        {
          "method": "PUT",
          "path": "/walletobjects/v1/eventTicketClass/{resourceId}",
          "description": "Updates the event ticket class referenced by the given class ID."
        },
        {
          "method": "POST",
          "path": "/walletobjects/v1/eventTicketClass/{resourceId}/addMessage",
          "description": "Adds a message to the event ticket class referenced by the given class ID."
        },
        {
          "method": "GET",
          "path": "/walletobjects/v1/eventTicketObject",
          "description": "Returns a list of all event ticket objects for a given issuer ID."
        },
        {
          "method": "POST",
          "path": "/walletobjects/v1/eventTicketObject",
          "description": "Inserts an event ticket object with the given ID and properties."
        }
      ],
      "sampleRequest": "curl -X GET 'https://walletobjects.googleapis.com//walletobjects/v1/eventTicketClass' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:46.088Z",
      "verifiedStatus": 404,
      "latencyMs": 6510
    },
    {
      "id": "ukraine-express-restful-partners",
      "name": "Ukraine Express RESTful Partners API",
      "provider": "Ukraine Express RESTful Partners API",
      "category": "ai",
      "description": "Important notices\n> - For the compatibility reasons in this documents utilize/utilization means the same as dispose/disposal.\n*\nWebhooks information\n> All webhooks described in this documentation are shown as callbacks for webhooks-*. Actually you can't subscribe for this method, as it doe",
      "longDescription": "Important notices\n> - For the compatibility reasons in this documents utilize/utilization means the same as dispose/disposal.\n*\nWebhooks information\n> All webhooks described in this documentation are shown as callbacks for webhooks-*. Actually you can't subscribe for this method, as it does not exist - it is here just to render the docs. All webhooks will be sent to a single endpoint configured for partner (marked as webhooks-endpoint for documentation). Partner can later change the",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "API key in the access_token header",
      "authExample": "access_token: YOUR_API_KEY",
      "baseUrl": "https://api.testsrvr.ukraine-express.com/partners/v2",
      "docsUrl": "https://app.swaggerhub.com/apis//Ukraine Express RESTful Partners API",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Ukrainian payment processing API for partner merchants."
      },
      "rateLimit": "Based on contract",
      "endpoints": [
        {
          "method": "POST",
          "path": "/register",
          "description": "Customer registration (autogenerated code)"
        },
        {
          "method": "POST",
          "path": "/register/{code}",
          "description": "Customer registration (custom code)"
        },
        {
          "method": "GET",
          "path": "/divisions",
          "description": "Available countries list"
        },
        {
          "method": "POST",
          "path": "/settings/webhooks-endpoint",
          "description": "Update webhooks endpoint"
        },
        {
          "method": "GET",
          "path": "/{division}/airboxes/",
          "description": "All airboxes of partner"
        },
        {
          "method": "GET",
          "path": "/{division}/airbox/{id}",
          "description": "Airbox details"
        },
        {
          "method": "GET",
          "path": "/{division}/containers/",
          "description": "All containers of the partner"
        },
        {
          "method": "GET",
          "path": "/{division}/containers/{id}",
          "description": "Container details"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.testsrvr.ukraine-express.com/partners/v2/register' \\\n  -H 'access_token: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.783Z",
      "verifiedStatus": 404,
      "latencyMs": 4395
    },
    {
      "id": "chinese-text-project",
      "name": "Chinese Text Project API",
      "provider": "Chinese Text Project",
      "category": "ai",
      "description": "Online open-access digital library for pre-modern Chinese texts",
      "longDescription": "Online open-access digital library for pre-modern Chinese texts",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://ctext.org",
      "docsUrl": "https://ctext.org/tools/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://ctext.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.406Z",
      "verifiedStatus": 200,
      "latencyMs": 1483
    },
    {
      "id": "collins",
      "name": "Collins API",
      "provider": "Collins",
      "category": "ai",
      "description": "Bilingual Dictionary and Thesaurus Data",
      "longDescription": "Bilingual Dictionary and Thesaurus Data",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.collinsdictionary.com",
      "docsUrl": "https://api.collinsdictionary.com/api/v1/documentation/html/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid API. Commercial dictionary licensing required. Pricing by custom agreement."
      },
      "rateLimit": "Based on license",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.collinsdictionary.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 23,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.391Z",
      "verifiedStatus": 403,
      "latencyMs": 1302
    },
    {
      "id": "free-dictionary",
      "name": "Free Dictionary API",
      "provider": "Free Dictionary",
      "category": "ai",
      "description": "Definitions, phonetics, pronounciations, parts of speech, examples, synonyms",
      "longDescription": "Definitions, phonetics, pronounciations, parts of speech, examples, synonyms",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://dictionaryapi.dev",
      "docsUrl": "https://dictionaryapi.dev/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dictionaryapi.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.538Z",
      "verifiedStatus": 200,
      "latencyMs": 1353
    },
    {
      "id": "indonesia-dictionary",
      "name": "Indonesia Dictionary API",
      "provider": "Indonesia Dictionary",
      "category": "ai",
      "description": "Indonesia dictionary many words",
      "longDescription": "Indonesia dictionary many words",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://new-kbbi-api.herokuapp.com",
      "docsUrl": "https://new-kbbi-api.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://new-kbbi-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.725Z",
      "verifiedStatus": 404,
      "latencyMs": 1540
    },
    {
      "id": "lingua-robot",
      "name": "Lingua Robot API",
      "provider": "Lingua Robot",
      "category": "ai",
      "description": "Word definitions, pronunciations, synonyms, antonyms and others",
      "longDescription": "Word definitions, pronunciations, synonyms, antonyms and others",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.linguarobot.io",
      "docsUrl": "https://www.linguarobot.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5,000 words/month. Basic €9/mo (50,000 words), Advanced €29/mo (250,000 words)."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.linguarobot.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.752Z",
      "verifiedStatus": 200,
      "latencyMs": 1506
    },
    {
      "id": "owlbot",
      "name": "OwlBot API",
      "provider": "OwlBot",
      "category": "ai",
      "description": "Definitions with example sentence and photo if available",
      "longDescription": "Definitions with example sentence and photo if available",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://owlbot.info",
      "docsUrl": "https://owlbot.info/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 req/month. Paid $3/mo for unlimited requests."
      },
      "rateLimit": "30 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://owlbot.info'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.856Z",
      "verifiedStatus": 404,
      "latencyMs": 1591
    },
    {
      "id": "synonyms",
      "name": "Synonyms API",
      "provider": "Synonyms",
      "category": "ai",
      "description": "Synonyms, thesaurus and antonyms information for any given word",
      "longDescription": "Synonyms, thesaurus and antonyms information for any given word",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.synonyms.com",
      "docsUrl": "https://www.synonyms.com/synonyms_api.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key. Thesaurus/synonym lookup; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.synonyms.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.986Z",
      "verifiedStatus": 200,
      "latencyMs": 1703
    },
    {
      "id": "words",
      "name": "Words API",
      "provider": "Words",
      "category": "ai",
      "description": "Definitions and synonyms for more than 150,000 words",
      "longDescription": "Definitions and synonyms for more than 150,000 words",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.wordsapi.com",
      "docsUrl": "https://www.wordsapi.com/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 2,500 req/day. Pro via RapidAPI from $10/mo for higher limits."
      },
      "rateLimit": "2,500 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.wordsapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:05.723Z",
      "verifiedStatus": 200,
      "latencyMs": 1422
    },
    {
      "id": "exude",
      "name": "EXUDE-API API",
      "provider": "EXUDE-API",
      "category": "ai",
      "description": "Used for the primary ways for filtering the stopping, stemming words from the text data",
      "longDescription": "Used for the primary ways for filtering the stopping, stemming words from the text data",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://uttesh.com",
      "docsUrl": "http://uttesh.com/exude-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://uttesh.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:26.891Z",
      "verifiedStatus": 200,
      "latencyMs": 4796
    },
    {
      "id": "hirak-face",
      "name": "Hirak FaceAPI API",
      "provider": "Hirak FaceAPI",
      "category": "ai",
      "description": "Face detection, face recognition with age estimation/gender estimation, accurate, no quota limits",
      "longDescription": "Face detection, face recognition with age estimation/gender estimation, accurate, no quota limits",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://faceapi.hirak.site",
      "docsUrl": "https://faceapi.hirak.site/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key for face recognition and detection."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://faceapi.hirak.site'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:24.211Z",
      "verifiedStatus": 429,
      "latencyMs": 2082
    },
    {
      "id": "imagga",
      "name": "Imagga API",
      "provider": "Imagga",
      "category": "ai",
      "description": "Image Recognition Solutions like Tagging, Visual Search, NSFW moderation",
      "longDescription": "Image Recognition Solutions like Tagging, Visual Search, NSFW moderation",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://imagga.com",
      "docsUrl": "https://imagga.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 req/month. Basic $39/mo (20,000 req), Pro $99/mo (100,000 req)."
      },
      "rateLimit": "100 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://imagga.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:24.378Z",
      "verifiedStatus": 200,
      "latencyMs": 2117
    },
    {
      "id": "irisnet",
      "name": "Irisnet API",
      "provider": "Irisnet",
      "category": "ai",
      "description": "Realtime content moderation API that blocks or blurs unwanted images in real-time",
      "longDescription": "Realtime content moderation API that blocks or blurs unwanted images in real-time",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://irisnet.de",
      "docsUrl": "https://irisnet.de/api/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free trial: 100 req. Starter $9/mo (500 req), Pro $29/mo (2,500 req), Business $99/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://irisnet.de'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:25.095Z",
      "verifiedStatus": 200,
      "latencyMs": 2827
    },
    {
      "id": "machinetutors",
      "name": "Machinetutors API",
      "provider": "Machinetutors",
      "category": "ai",
      "description": "AI Solutions: Video/Image Classification & Tagging, NSFW, Icon/Image/Audio Search, NLP",
      "longDescription": "AI Solutions: Video/Image Classification & Tagging, NSFW, Icon/Image/Audio Search, NLP",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.machinetutors.com",
      "docsUrl": "https://www.machinetutors.com/portfolio/MT_api.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free educational ML API for learning machine learning concepts."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.machinetutors.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.650Z",
      "verifiedStatus": 200,
      "latencyMs": 5222
    },
    {
      "id": "messengerx-io",
      "name": "MessengerX.io API",
      "provider": "MessengerX.io",
      "category": "ai",
      "description": "A FREE API for developers to build and monetize personalized ML based chat apps",
      "longDescription": "A FREE API for developers to build and monetize personalized ML based chat apps",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://messengerx.rtfd.io",
      "docsUrl": "https://messengerx.rtfd.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier available. Conversational AI platform for messaging."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://messengerx.rtfd.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:28.103Z",
      "verifiedStatus": 200,
      "latencyMs": 5424
    },
    {
      "id": "nlp-cloud",
      "name": "NLP Cloud API",
      "provider": "NLP Cloud",
      "category": "ai",
      "description": "NLP API using spaCy and transformers for NER, sentiments, classification, summarization, and more",
      "longDescription": "NLP API using spaCy and transformers for NER, sentiments, classification, summarization, and more",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://nlpcloud.io",
      "docsUrl": "https://nlpcloud.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 3 req/min, limited models. Paid from $35/mo (all models, 5 req/s). GPU inference on demand."
      },
      "rateLimit": "3 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://nlpcloud.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.125Z",
      "verifiedStatus": 200,
      "latencyMs": 4211
    },
    {
      "id": "perspective",
      "name": "Perspective API",
      "provider": "Perspective",
      "category": "ai",
      "description": "NLP API to return probability that if text is toxic, obscene, insulting or threatening",
      "longDescription": "NLP API to return probability that if text is toxic, obscene, insulting or threatening",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://perspectiveapi.com",
      "docsUrl": "https://perspectiveapi.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Google account. Designed for non-commercial/research use; commercial requires approval."
      },
      "rateLimit": "1 req/s (free); higher on request",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://perspectiveapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:25.139Z",
      "verifiedStatus": 200,
      "latencyMs": 2046
    },
    {
      "id": "roboflow-universe",
      "name": "Roboflow Universe API",
      "provider": "Roboflow Universe",
      "category": "ai",
      "description": "Download free, open source datasets and pre-trained computer vision machine learning models.",
      "longDescription": "Download free, open source datasets and pre-trained computer vision machine learning models.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://universe.roboflow.com",
      "docsUrl": "https://universe.roboflow.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 source images, 3 projects. Starter $249/mo, Professional $1,249/mo."
      },
      "rateLimit": "10,000 inference calls/mo (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://universe.roboflow.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:25.168Z",
      "verifiedStatus": 403,
      "latencyMs": 1895
    },
    {
      "id": "skybiometry",
      "name": "SkyBiometry API",
      "provider": "SkyBiometry",
      "category": "ai",
      "description": "Face Detection, Face Recognition and Face Grouping",
      "longDescription": "Face Detection, Face Recognition and Face Grouping",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://skybiometry.com",
      "docsUrl": "https://skybiometry.com/documentation/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 req/month. Starter $25/mo (1,000 req/month). Face detection and recognition."
      },
      "rateLimit": "100 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://skybiometry.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:25.698Z",
      "verifiedStatus": 200,
      "latencyMs": 2424
    },
    {
      "id": "unplugg",
      "name": "Unplugg API",
      "provider": "Unplugg",
      "category": "ai",
      "description": "Welcome to Unplugg — Forecasting for timeseries data.",
      "longDescription": "Welcome to Unplugg — Forecasting for timeseries data.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://unplu.gg",
      "docsUrl": "https://unplu.gg/test_api.html",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid energy consumption forecasting API. Contact for pricing."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://unplu.gg'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:26.708Z",
      "verifiedStatus": 200,
      "latencyMs": 3077
    },
    {
      "id": "wolframalpha",
      "name": "WolframAlpha API",
      "provider": "WolframAlpha",
      "category": "ai",
      "description": "Provides specific answers to questions using data and algorithms",
      "longDescription": "Provides specific answers to questions using data and algorithms",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://products.wolframalpha.com",
      "docsUrl": "https://products.wolframalpha.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 2,000 API calls/month (non-commercial). Paid from $25/mo (10,000 calls)."
      },
      "rateLimit": "20 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://products.wolframalpha.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:26.789Z",
      "verifiedStatus": 404,
      "latencyMs": 3046
    },
    {
      "id": "code-detection",
      "name": "Code Detection API",
      "provider": "Code Detection API",
      "category": "ai",
      "description": "Detect, label, format and enrich the code in your app or in your data pipeline",
      "longDescription": "Detect, label, format and enrich the code in your app or in your data pipeline",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://codedetectionapi.runtime.dev",
      "docsUrl": "https://codedetectionapi.runtime.dev",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key for code detection and language identification."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://codedetectionapi.runtime.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:40.346Z",
      "verifiedStatus": 200,
      "latencyMs": 2996
    },
    {
      "id": "aylien-text-analysis",
      "name": "Aylien Text Analysis API",
      "provider": "Aylien Text Analysis",
      "category": "ai",
      "description": "A collection of information retrieval and natural language APIs",
      "longDescription": "A collection of information retrieval and natural language APIs",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.aylien.com",
      "docsUrl": "https://docs.aylien.com/textapi/#getting-started",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Developer: free with 1,000 req/day. Pro from $59/mo (50,000 req)."
      },
      "rateLimit": "1,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.aylien.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:38.864Z",
      "verifiedStatus": 404,
      "latencyMs": 1376
    },
    {
      "id": "eli",
      "name": "ELI API",
      "provider": "ELI",
      "category": "ai",
      "description": "Natural Language Processing Tools for Thai Language",
      "longDescription": "Natural Language Processing Tools for Thai Language",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://nlp.insightera.co.th",
      "docsUrl": "https://nlp.insightera.co.th/docs/v1.0",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. ELI5 (Explain Like I'm 5) text simplification API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://nlp.insightera.co.th'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:41.098Z",
      "verifiedStatus": 404,
      "latencyMs": 3307
    },
    {
      "id": "hirak-ocr",
      "name": "Hirak OCR API",
      "provider": "Hirak OCR",
      "category": "ai",
      "description": "Image to text -text recognition- from image more than 100 language, accurate, unlimited requests",
      "longDescription": "Image to text -text recognition- from image more than 100 language, accurate, unlimited requests",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://ocr.hirak.site",
      "docsUrl": "https://ocr.hirak.site/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key for optical character recognition."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://ocr.hirak.site'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 16,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:19:42.325Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "hirak-translation",
      "name": "Hirak Translation API",
      "provider": "Hirak Translation",
      "category": "ai",
      "description": "Translate between 21 of most used languages, accurate, unlimited requests",
      "longDescription": "Translate between 21 of most used languages, accurate, unlimited requests",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://translate.hirak.site",
      "docsUrl": "https://translate.hirak.site/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key for translation."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://translate.hirak.site'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:40.868Z",
      "verifiedStatus": 429,
      "latencyMs": 2970
    },
    {
      "id": "libretranslate",
      "name": "LibreTranslate API",
      "provider": "LibreTranslate",
      "category": "ai",
      "description": "Translation tool with 17 available languages",
      "longDescription": "Translation tool with 17 available languages",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://libretranslate.com",
      "docsUrl": "https://libretranslate.com/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://libretranslate.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:41.028Z",
      "verifiedStatus": 200,
      "latencyMs": 2949
    },
    {
      "id": "merriam-webster",
      "name": "Merriam-Webster API",
      "provider": "Merriam-Webster",
      "category": "ai",
      "description": "Dictionary and Thesaurus Data",
      "longDescription": "Dictionary and Thesaurus Data",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://dictionaryapi.com",
      "docsUrl": "https://dictionaryapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for non-commercial use with developer key. Commercial use requires licensing."
      },
      "rateLimit": "1,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dictionaryapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.154Z",
      "verifiedStatus": 200,
      "latencyMs": 941
    },
    {
      "id": "wiktionary",
      "name": "Wiktionary API",
      "provider": "Wiktionary",
      "category": "ai",
      "description": "Collaborative dictionary data",
      "longDescription": "Collaborative dictionary data",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://en.wiktionary.org",
      "docsUrl": "https://en.wiktionary.org/w/api.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://en.wiktionary.org'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.743Z",
      "verifiedStatus": 200,
      "latencyMs": 1490
    },
    {
      "id": "ai-for-thai",
      "name": "AI For Thai API",
      "provider": "AI For Thai",
      "category": "ai",
      "description": "Free Various Thai AI API",
      "longDescription": "Free Various Thai AI API",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://aiforthai.in.th",
      "docsUrl": "https://aiforthai.in.th/index.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 1,000 req/day. Paid plans for higher usage. Thai NLP services."
      },
      "rateLimit": "1,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://aiforthai.in.th'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.096Z",
      "verifiedStatus": 200,
      "latencyMs": 2506
    },
    {
      "id": "dialogflow",
      "name": "Dialogflow API",
      "provider": "Dialogflow",
      "category": "ai",
      "description": "Natural Language Processing",
      "longDescription": "Natural Language Processing",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://cloud.google.com",
      "docsUrl": "https://cloud.google.com/dialogflow/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 180 req/min (ES), unlimited text interactions (Essentials). CX: $0.007/session request."
      },
      "rateLimit": "180 req/min (ES free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://cloud.google.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:03.697Z",
      "verifiedStatus": 200,
      "latencyMs": 2047
    },
    {
      "id": "time-door",
      "name": "Time Door API",
      "provider": "Time Door",
      "category": "ai",
      "description": "Time Door is an API for statistical insights into time series data. It is easy to integrate and handles fast and messy real-world data. Sign up for free.",
      "longDescription": "Time Door is an API for statistical insights into time series data. It is easy to integrate and handles fast and messy real-world data. Sign up for free.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://timedoor.io",
      "docsUrl": "https://timedoor.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Time-based content scheduling and social API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://timedoor.io'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 30,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:03.747Z",
      "verifiedStatus": 200,
      "latencyMs": 2056
    },
    {
      "id": "detect-language",
      "name": "Detect Language API",
      "provider": "Detect Language",
      "category": "ai",
      "description": "Fast, reliable text language identification API. Detects 216 languages. Supports short texts, batch requests, JavaScript, Python, C#, Java, PHP, Go, Ruby and more.",
      "longDescription": "Fast, reliable text language identification API. Detects 216 languages. Supports short texts, batch requests, JavaScript, Python, C#, Java, PHP, Go, Ruby and more.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://detectlanguage.com",
      "docsUrl": "https://detectlanguage.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 req/month. Basic $9/mo (10,000 req), Pro $29/mo (100,000 req)."
      },
      "rateLimit": "1,000 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://detectlanguage.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:07.400Z",
      "verifiedStatus": 200,
      "latencyMs": 1552
    },
    {
      "id": "yahoo-gemini-api",
      "name": "Yahoo Gemini API API",
      "provider": "Yahoo Gemini API",
      "category": "ai",
      "description": "Yahoo Gemini API API. See documentation for full details.",
      "longDescription": "Yahoo Gemini API API. See documentation for full details.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.yahoo.com",
      "docsUrl": "https://developer.yahoo.com/gemini/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid advertising API. Yahoo DSP pricing varies; contact Yahoo for current ad pricing."
      },
      "rateLimit": "Based on account",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.yahoo.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:11.761Z",
      "verifiedStatus": 200,
      "latencyMs": 3995
    },
    {
      "id": "microsoft-azure-machine-learning-api",
      "name": "Microsoft Azure Machine Learning API API",
      "provider": "Microsoft Azure Machine Learning API",
      "category": "ai",
      "description": "Microsoft Azure Machine Learning API API. See documentation for full details.",
      "longDescription": "Microsoft Azure Machine Learning API API. See documentation for full details.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://azure.microsoft.com",
      "docsUrl": "https://azure.microsoft.com/en-us/services/cognitive-services/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go. Prices vary by service (Vision: $1/1,000 transactions; Custom Vision: $2/1,000). Free tier available."
      },
      "rateLimit": "20 req/s (free tier F0)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://azure.microsoft.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.967Z",
      "verifiedStatus": 404,
      "latencyMs": 1156
    },
    {
      "id": "amazon-machine-learning",
      "name": "Amazon Machine Learning API",
      "provider": "Amazon Machine Learning",
      "category": "ai",
      "description": "Amazon Machine Learning API. See documentation for full details.",
      "longDescription": "Amazon Machine Learning API. See documentation for full details.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://aws.amazon.com",
      "docsUrl": "https://aws.amazon.com/cn/documentation/machine-learning/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go. Batch predictions $0.10/1,000; Real-time $0.0001/prediction. Free tier via SageMaker."
      },
      "rateLimit": "Varies by service",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://aws.amazon.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:10.621Z",
      "verifiedStatus": 200,
      "latencyMs": 755
    },
    {
      "id": "baidu-translate",
      "name": "Baidu Translate API",
      "provider": "Baidu Translate",
      "category": "ai",
      "description": "Baidu Translate API. See documentation for full details.",
      "longDescription": "Baidu Translate API. See documentation for full details.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://api.fanyi.baidu.com",
      "docsUrl": "http://api.fanyi.baidu.com/api/trans/product/index",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 million chars/month (standard). Premium plans from ¥49/mo for specialized translation."
      },
      "rateLimit": "10 QPS (standard)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://api.fanyi.baidu.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:13.452Z",
      "verifiedStatus": 200,
      "latencyMs": 3154
    },
    {
      "id": "yandex-translate",
      "name": "Yandex Translate API",
      "provider": "Yandex Translate",
      "category": "ai",
      "description": "Yandex Translate API. See documentation for full details.",
      "longDescription": "Yandex Translate API. See documentation for full details.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://tech.yandex.com",
      "docsUrl": "https://tech.yandex.com/translate/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-per-use. 1 million characters: ~$15. Free tier: 1M chars/month for testing."
      },
      "rateLimit": "10,000 chars/req; up to 1M chars/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://tech.yandex.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:14.984Z",
      "verifiedStatus": 200,
      "latencyMs": 4677
    },
    {
      "id": "crossbar-data",
      "name": "CROssBAR Data API",
      "provider": "CROssBAR Data",
      "category": "ai",
      "description": "About CROssBAR & data\nCROssBAR: Comprehensive Resource of Biomedical Relations with Deep Learning Applications and Knowledge Graph Representations\nCROssBAR is a comprehensive system that integrates large-scale biomedical data from various resources e.g UniProt, ChEMBL, Drugbank, EFO, HPO, InterPro & PubChem and stores them in a new NoSQL database, enrich these data with deep learning based p",
      "longDescription": "About CROssBAR & data\nCROssBAR: Comprehensive Resource of Biomedical Relations with Deep Learning Applications and Knowledge Graph Representations\nCROssBAR is a comprehensive system that integrates large-scale biomedical data from various resources e.g UniProt, ChEMBL, Drugbank, EFO, HPO, InterPro & PubChem and stores them in a new NoSQL database, enrich these data with deep learning based p",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.ebi.ac.uk/Tools/crossbar",
      "docsUrl": "https://api.apis.guru/v2/specs/ebi.ac.uk/1.0.json",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/activities",
          "description": "Get ChEMBL activities"
        },
        {
          "method": "GET",
          "path": "/assays",
          "description": "Get ChEMBL assays"
        },
        {
          "method": "GET",
          "path": "/drugs",
          "description": "drugs collected from Drugbank"
        },
        {
          "method": "GET",
          "path": "/efo",
          "description": "Get EFO diseases data"
        },
        {
          "method": "GET",
          "path": "/hpo",
          "description": "Get HPO phenotypes data"
        },
        {
          "method": "GET",
          "path": "/intact",
          "description": "Molecular Interactions collected from IntAct"
        },
        {
          "method": "GET",
          "path": "/molecules",
          "description": "Get ChEMBL molecules"
        },
        {
          "method": "GET",
          "path": "/proteins",
          "description": "Proteins collected from Uniprot for selective tax ids  HUMAN(9606), MOUSE(10090), RAT(10116), BOVINE(9913), ESCHERICHIA_COLI(83333), SUS_SCROFA(9823), MYCOBACTERIUM_TUBERCULOSIS(83332), ORYCTOLAGUS_CUNICULUS(9986), SACCHAROMYCES_CEREVISIAE(559292), CVHSA(694009) & SARS2(2697049)"
        }
      ],
      "sampleRequest": "curl 'https://www.ebi.ac.uk/Tools/crossbar/activities' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:16.840Z",
      "verifiedStatus": 404,
      "latencyMs": 3388
    },
    {
      "id": "hetzner-cloud",
      "name": "Hetzner Cloud API",
      "provider": "Hetzner Cloud",
      "category": "ai",
      "description": "This is the official API documentation for the Public Hetzner Cloud.\n\nIntroduction\n\nThe Hetzner Cloud API operates over HTTPS and uses JSON as its data format. The API is a RESTful API and utilizes HTTP methods and HTTP status codes to specify requests and responses.\n\nAs an alternative to working directly with our API you may also consider to use:\n* Our CLI program [hcloud](https://github.com/h",
      "longDescription": "This is the official API documentation for the Public Hetzner Cloud.\n\nIntroduction\n\nThe Hetzner Cloud API operates over HTTPS and uses JSON as its data format. The API is a RESTful API and utilizes HTTP methods and HTTP status codes to specify requests and responses.\n\nAs an alternative to working directly with our API you may also consider to use:\n* Our CLI program [hcloud](https://github.com/h",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.hetzner.cloud/v1",
      "docsUrl": "https://api.apis.guru/v2/specs/hetzner.cloud/1.0.0.json",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/actions",
          "description": "Get all Actions"
        },
        {
          "method": "GET",
          "path": "/actions/{id}",
          "description": "Get an Action"
        },
        {
          "method": "GET",
          "path": "/certificates",
          "description": "Get all Certificates"
        },
        {
          "method": "POST",
          "path": "/certificates",
          "description": "Create a Certificate"
        },
        {
          "method": "DELETE",
          "path": "/certificates/{id}",
          "description": "Delete a Certificate"
        },
        {
          "method": "GET",
          "path": "/certificates/{id}",
          "description": "Get a Certificate"
        },
        {
          "method": "PUT",
          "path": "/certificates/{id}",
          "description": "Update a Certificate"
        },
        {
          "method": "GET",
          "path": "/certificates/{id}/actions",
          "description": "Get all Actions for a Certificate"
        }
      ],
      "sampleRequest": "curl 'https://api.hetzner.cloud/v1/actions' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:15.380Z",
      "verifiedStatus": 404,
      "latencyMs": 1383
    },
    {
      "id": "taggun-receipt-ocr-scanning",
      "name": "TAGGUN Receipt OCR Scanning API",
      "provider": "TAGGUN Receipt OCR Scanning",
      "category": "ai",
      "description": "Expects only running software, real reactions, and beautifully crafted APIs to serve your every desire to transcribe a piece of paper to digital form.",
      "longDescription": "Expects only running software, real reactions, and beautifully crafted APIs to serve your every desire to transcribe a piece of paper to digital form.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.taggun.io/",
      "docsUrl": "https://api.apis.guru/v2/specs/taggun.io/1.10.9.json",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/api/account/v1/feedback",
          "description": "Add manually verified receipt data to a given receipt for feedback and training purposes"
        },
        {
          "method": "POST",
          "path": "/api/account/v1/merchantname/add",
          "description": "Add a keyword to your account's model to predict merchant name. Changes in your account's model are updated daily."
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/match/file",
          "description": "detect and match a receipt against keywords and metadata by uploading an image file"
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/simple/encoded",
          "description": "transcribe a receipt using base64 encoded image in json payload"
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/simple/file",
          "description": "transcribe a receipt by uploading an image file"
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/simple/storage",
          "description": "transcribe a receipt in storage"
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/simple/url",
          "description": "transcribe a receipt from URL"
        },
        {
          "method": "POST",
          "path": "/api/receipt/v1/verbose/encoded",
          "description": "transcribe a receipt using base64 encoded image in json payload and return detailed result"
        }
      ],
      "sampleRequest": "curl 'https://api.taggun.io//api/account/v1/feedback' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 62,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:15.503Z",
      "verifiedStatus": 200,
      "latencyMs": 1240
    },
    {
      "id": "article-rewriter-and-article-extractor",
      "name": "Article Rewriter and Article Extractor API",
      "provider": "Article Rewriter and Article Extractor",
      "category": "ai",
      "description": "Spinbot.net propose a new solution based on high technologies for faster article spinner and extractor that you will love to use it.",
      "longDescription": "Spinbot.net propose a new solution based on high technologies for faster article spinner and extractor that you will love to use it.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "API key as query parameter (key)",
      "authExample": "GET /endpoint?key=YOUR_KEY",
      "baseUrl": "https://api.spinbot.net/",
      "docsUrl": "https://api.apis.guru/v2/specs/spinbot.net/1.0.json",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium via RapidAPI. Free tier available; paid plans from ~$9.99/mo."
      },
      "rateLimit": "Varies by RapidAPI plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/acc",
          "description": "Return the user credit information."
        },
        {
          "method": "POST",
          "path": "/api/article",
          "description": "Extracting the main article of the given URL."
        },
        {
          "method": "POST",
          "path": "/api/pretty-spinner",
          "description": "Human readable auto rewrite your article."
        },
        {
          "method": "POST",
          "path": "/api/spinner",
          "description": "Rewriting (spinning) your input article."
        },
        {
          "method": "POST",
          "path": "/api/spintax",
          "description": "Generate Spintax format for the input article"
        }
      ],
      "sampleRequest": "curl 'https://api.spinbot.net//api/acc' \\\n  -H 'GET /endpoint?key=YOUR_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 50,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:16.141Z",
      "verifiedStatus": 200,
      "latencyMs": 1298
    },
    {
      "id": "nick-cannon-baby-api",
      "name": "Nick Cannon Baby API API",
      "provider": "Nick Cannon Baby API",
      "category": "ai",
      "description": "JSON API for entertainer Nick Cannon's many children and baby mamas. | !Open Source |",
      "longDescription": "JSON API for entertainer Nick Cannon's many children and baby mamas. | !Open Source |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://nick-cannon-baby-api.onrender.com",
      "docsUrl": "https://nick-cannon-baby-api.onrender.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free novelty API. No paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://nick-cannon-baby-api.onrender.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:17.576Z",
      "verifiedStatus": 200,
      "latencyMs": 1219
    },
    {
      "id": "aylien",
      "name": "AYLIEN API",
      "provider": "AYLIEN",
      "category": "ai",
      "description": "AYLIEN Text Analysis API is a package of Natural Language Processing, Information Retrieval and Machine Learning tools for extracting meaning and insight from textual and visual content with ease. | *",
      "longDescription": "AYLIEN Text Analysis API is a package of Natural Language Processing, Information Retrieval and Machine Learning tools for extracting meaning and insight from textual and visual content with ease. | *",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://aylien.com",
      "docsUrl": "http://aylien.com/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go news intelligence. Starter $0 (limited trial), Growth from $299/mo."
      },
      "rateLimit": "10 req/s (paid)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://aylien.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 18,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:20:18.755Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "big-ml",
      "name": "Big ML API",
      "provider": "Big ML",
      "category": "ai",
      "description": "BigML is a user-friendly and developer-friendly Machine learning API that mainly concentrates on decision trees. | N/A |",
      "longDescription": "BigML is a user-friendly and developer-friendly Machine learning API that mainly concentrates on decision trees. | N/A |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://bigml.com",
      "docsUrl": "http://bigml.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free: 1 user, limited resources. Paid from $20/mo (Professional). 16-day trial."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://bigml.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.722Z",
      "verifiedStatus": 200,
      "latencyMs": 1686
    },
    {
      "id": "lemonfox-ai",
      "name": "Lemonfox.ai API",
      "provider": "Lemonfox.ai",
      "category": "ai",
      "description": "Speech-to-text API to transcribe audio and video files. The API is powered by the open-source Whisper model, supports 100+ languages and speaker recognition. | 💸 |",
      "longDescription": "Speech-to-text API to transcribe audio and video files. The API is powered by the open-source Whisper model, supports 100+ languages and speaker recognition. | 💸 |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.lemonfox.ai",
      "docsUrl": "https://www.lemonfox.ai/apis/speech-to-text",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Pay-as-you-go. Speech-to-text from $0.0001/s. Image generation varies by model."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.lemonfox.ai'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.912Z",
      "verifiedStatus": 200,
      "latencyMs": 652
    },
    {
      "id": "paralleldots",
      "name": "ParallelDots API",
      "provider": "ParallelDots",
      "category": "ai",
      "description": "ParallelDots AI APIs are the most comprehensive set of document classification and NLP APIs for software developers that provide state-of-the-art accuracy on most common NLP use-cases such as sentimen",
      "longDescription": "ParallelDots AI APIs are the most comprehensive set of document classification and NLP APIs for software developers that provide state-of-the-art accuracy on most common NLP use-cases such as sentimen",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.paralleldots.com",
      "docsUrl": "https://www.paralleldots.com/text-analysis-apis",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 API calls/month. Starter $25/mo (5,000 calls), Pro $99/mo (50,000 calls)."
      },
      "rateLimit": "10 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.paralleldots.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.894Z",
      "verifiedStatus": 200,
      "latencyMs": 610
    },
    {
      "id": "speechtext-ai-api",
      "name": "SpeechText.AI API API",
      "provider": "SpeechText.AI API",
      "category": "ai",
      "description": "Cloud Speech Recognition API. Transform speech to text with high accuracy in multiple languages. Generate summaries with important highlights from audio and video files. | 💸 |",
      "longDescription": "Cloud Speech Recognition API. Transform speech to text with high accuracy in multiple languages. Generate summaries with important highlights from audio and video files. | 💸 |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://speechtext.ai",
      "docsUrl": "https://speechtext.ai/speech-recognition-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 60 minutes/month. Pay-as-you-go from $0.006/min. Monthly plans available."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://speechtext.ai'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.393Z",
      "verifiedStatus": 200,
      "latencyMs": 883
    },
    {
      "id": "summarizebot-api",
      "name": "SummarizeBot API API",
      "provider": "SummarizeBot API",
      "category": "ai",
      "description": "AI web data extraction and analysis. Multilingual summarization, keywords and sentiment analysis, language recognition, article extraction, comments identification, multimedia analysis, image and face",
      "longDescription": "AI web data extraction and analysis. Multilingual summarization, keywords and sentiment analysis, language recognition, article extraction, comments identification, multimedia analysis, image and face",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.summarizebot.com",
      "docsUrl": "https://www.summarizebot.com/summarization_business.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free via Telegram bot. API pricing available on request; contact for commercial use."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.summarizebot.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.417Z",
      "verifiedStatus": 200,
      "latencyMs": 845
    },
    {
      "id": "voicerss",
      "name": "VoiceRSS API",
      "provider": "VoiceRSS",
      "category": "ai",
      "description": "An API to convert Text to Speech, supporting 15+ major languages. | N/A |",
      "longDescription": "An API to convert Text to Speech, supporting 15+ major languages. | N/A |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.voicerss.org",
      "docsUrl": "http://www.voicerss.org/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 350 req/day. Paid from $4.99/mo (2,000 req/day) to $29.99/mo (15,000 req/day)."
      },
      "rateLimit": "350 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.voicerss.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.556Z",
      "verifiedStatus": 200,
      "latencyMs": 857
    },
    {
      "id": "wit-ai",
      "name": "Wit AI API",
      "provider": "Wit AI",
      "category": "ai",
      "description": "Provides an intent-based NLP API to easily build text and audio based chat bots. | !Open Source |",
      "longDescription": "Provides an intent-based NLP API to easily build text and audio based chat bots. | !Open Source |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://wit.ai",
      "docsUrl": "https://wit.ai/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Completely free, owned by Meta. No paid tiers; unlimited usage for approved apps."
      },
      "rateLimit": "60 req/min (audio); unlimited text",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wit.ai'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.561Z",
      "verifiedStatus": 200,
      "latencyMs": 839
    },
    {
      "id": "is-gd",
      "name": "Is.gd API",
      "provider": "Is.gd",
      "category": "ai",
      "description": "Simple URL shortener. Supports custom short link ending. | N/A |",
      "longDescription": "Simple URL shortener. Supports custom short link ending. | N/A |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://is.gd",
      "docsUrl": "https://is.gd/developers.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open URL shortener. No paid tiers; no API key required."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://is.gd'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 27,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.528Z",
      "verifiedStatus": 403,
      "latencyMs": 677
    },
    {
      "id": "tiny-cc",
      "name": "Tiny.cc API",
      "provider": "Tiny.cc",
      "category": "ai",
      "description": "Easy-to-use URL shortener. Supports custom short link ending. | N/A |",
      "longDescription": "Easy-to-use URL shortener. Supports custom short link ending. | N/A |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://tiny.cc",
      "docsUrl": "https://tiny.cc/api-docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 250 custom links/month. Pro $5/mo (1,000 custom links). URL shortener."
      },
      "rateLimit": "250 links/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://tiny.cc'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.729Z",
      "verifiedStatus": 200,
      "latencyMs": 852
    },
    {
      "id": "v-gd",
      "name": "V.gd API",
      "provider": "V.gd",
      "category": "ai",
      "description": "Simple URL shortener. Supports custom short link ending. | N/A |",
      "longDescription": "Simple URL shortener. Supports custom short link ending. | N/A |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://v.gd",
      "docsUrl": "https://v.gd/developers.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open URL shortener (v.gd). No paid tiers; no API key required."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://v.gd'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.729Z",
      "verifiedStatus": 200,
      "latencyMs": 835
    },
    {
      "id": "diffbot",
      "name": "Diffbot API",
      "provider": "Diffbot",
      "category": "ai",
      "description": "The Diffbot platform utilizes a combination of AI, computer vision, machine learning, and natural language processing to automatically extract data from web pages such as text, images, video, product",
      "longDescription": "The Diffbot platform utilizes a combination of AI, computer vision, machine learning, and natural language processing to automatically extract data from web pages such as text, images, video, product",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.diffbot.com",
      "docsUrl": "https://www.diffbot.com/dev/docs/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Starter $299/mo (100K API calls). Growth $799/mo. Enterprise custom. 14-day free trial."
      },
      "rateLimit": "25 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.diffbot.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:20.395Z",
      "verifiedStatus": 200,
      "latencyMs": 1033
    },
    {
      "id": "ibm-watson",
      "name": "IBM Watson API",
      "provider": "IBM Watson",
      "category": "ai",
      "description": "Allow developers to build applications that utilize machine learning technologies such as natural language processing, computer vision, and prediction.",
      "longDescription": "Allow developers to build applications that utilize machine learning technologies such as natural language processing, computer vision, and prediction.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.ibm.com",
      "docsUrl": "https://developer.ibm.com/watson/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Lite (free): 1,000 API calls/mo (NLU). Plus from $0.003/item. Prices vary by service."
      },
      "rateLimit": "60 req/min (Lite)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.ibm.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:20.418Z",
      "verifiedStatus": 200,
      "latencyMs": 1025
    },
    {
      "id": "phonepe",
      "name": "Phonepe API",
      "provider": "Phonepe",
      "category": "ai",
      "description": "PhonePe provides a cashless and seamless payment experience to customers. PhonePe is a multi-instrument payment container and allows customers to pay through UPI, Debit Card, Credit Card, and Wallet.",
      "longDescription": "PhonePe provides a cashless and seamless payment experience to customers. PhonePe is a multi-instrument payment container and allows customers to pay through UPI, Debit Card, Credit Card, and Wallet.",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.phonepe.com",
      "docsUrl": "https://developer.phonepe.com/docs",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with PhonePe merchant account. Indian UPI payment gateway; transaction fees apply."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.phonepe.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:21.416Z",
      "verifiedStatus": 200,
      "latencyMs": 1860
    },
    {
      "id": "stock-sentiment",
      "name": "Stock Sentiment API",
      "provider": "Stock Sentiment",
      "category": "ai",
      "description": "Reddit & X/Twitter sentiment analysis for stocks with buzz scores    | apiKey |  Yes  |   Yes   |",
      "longDescription": "Reddit & X/Twitter sentiment analysis for stocks with buzz scores    | apiKey |  Yes  |   Yes   |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.adanos.org",
      "docsUrl": "https://api.adanos.org/docs",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid sentiment analysis API. Pricing on application; contact for pricing details."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.adanos.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.357Z",
      "verifiedStatus": 200,
      "latencyMs": 2970
    },
    {
      "id": "valueray",
      "name": "ValueRay API",
      "provider": "ValueRay",
      "category": "ai",
      "description": "Quantitative and sentiment data for stocks and ETFs           |    No     | Yes  |   Yes   |",
      "longDescription": "Quantitative and sentiment data for stocks and ETFs           |    No     | Yes  |   Yes   |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.valueray.com",
      "docsUrl": "https://www.valueray.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier available. Paid plans for financial valuations and stock data. Contact for pricing."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.valueray.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:23.002Z",
      "verifiedStatus": 200,
      "latencyMs": 1586
    },
    {
      "id": "what-s-on-the-menu",
      "name": "What's on the menu? API",
      "provider": "What's on the menu?",
      "category": "ai",
      "description": "NYPL human-transcribed historical menu collection | apiKey |  No   | Unknown |",
      "longDescription": "NYPL human-transcribed historical menu collection | apiKey |  No   | Unknown |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://nypl.github.io",
      "docsUrl": "http://nypl.github.io/menus-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free via NYPL Labs. Historical menu data from the New York Public Library."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://nypl.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 27,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:22.133Z",
      "verifiedStatus": 404,
      "latencyMs": 715
    },
    {
      "id": "eight-ball",
      "name": "Eight Ball API",
      "provider": "Eight Ball API",
      "category": "ai",
      "description": "Fortune-telling API with random, sentiment-biased, and multi-language responses                              |       No        |  Yes  |   Yes   |",
      "longDescription": "Fortune-telling API with random, sentiment-biased, and multi-language responses                              |       No        |  Yes  |   Yes   |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://eightballapi.com",
      "docsUrl": "https://eightballapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free novelty API. No paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://eightballapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:23.413Z",
      "verifiedStatus": 200,
      "latencyMs": 1854
    },
    {
      "id": "agent-hustle",
      "name": "Agent Hustle API",
      "provider": "Agent Hustle",
      "category": "ai",
      "description": "AI web services: scraping, research, screenshots, translation, summarization | apiKey | Yes | Yes |",
      "longDescription": "AI web services: scraping, research, screenshots, translation, summarization | apiKey | Yes | Yes |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://agent.stakewatch.dev",
      "docsUrl": "https://agent.stakewatch.dev/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free to use. AI-powered content tools with no paid API tiers listed."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://agent.stakewatch.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.109Z",
      "verifiedStatus": 200,
      "latencyMs": 1080
    },
    {
      "id": "finlight",
      "name": "Finlight API",
      "provider": "Finlight",
      "category": "ai",
      "description": "Realtime financial news with sentiment and article content                                  | apiKey |  Yes  |   Yes   |",
      "longDescription": "Realtime financial news with sentiment and article content                                  | apiKey |  Yes  |   Yes   |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://finlight.me",
      "docsUrl": "https://finlight.me",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 50 req/day. Paid from $19/mo for news and financial data APIs."
      },
      "rateLimit": "50 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://finlight.me'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.662Z",
      "verifiedStatus": 200,
      "latencyMs": 1626
    },
    {
      "id": "t-ly",
      "name": "T.LY API",
      "provider": "T.LY",
      "category": "ai",
      "description": "URL Shortener With Short Links                 | apiKey |  Yes  | Unknown |",
      "longDescription": "URL Shortener With Short Links                 | apiKey |  Yes  | Unknown |",
      "color": "#10b981",
      "tags": [
        "ai"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://t.ly",
      "docsUrl": "https://t.ly/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 10 req/day. Paid from $3/mo for higher limits. URL shortener."
      },
      "rateLimit": "10 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://t.ly'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 90,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.392Z",
      "verifiedStatus": 200,
      "latencyMs": 457
    }
  ]
}