free-api-discovery

Discover which free or low-cost AI APIs are reachable from the current environment, verify them safely, and recommend a task-to-provider routing plan.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "free-api-discovery" with this command: npx skills add xuxuclassmate/free-api-discovery

Free AI API Discovery and Routing

When to use

  • You need to find which AI APIs are reachable from the current environment.
  • You want a low-cost fallback when a preferred provider is unavailable.
  • You need a simple routing recommendation for chat, code, speech, or multimodal tasks.

Workflow

  1. Check network reachability. Probe candidate endpoints with a short timeout and record whether the host is reachable.
  2. Verify credentials only after approval. Ask for the minimum key needed and avoid printing full secrets in logs.
  3. Test one capability at a time. Confirm chat, model listing, speech, or image endpoints separately.
  4. Recommend routing. Map each task type to the lowest-cost reliable provider that actually worked.

Example reachability probe

import socket
import ssl
import urllib.error
import urllib.request

socket.setdefaulttimeout(8)
ctx = ssl.create_default_context()

services = {
    "Groq": "https://api.groq.com",
    "OpenRouter": "https://openrouter.ai/api/v1",
    "DeepSeek": "https://api.deepseek.com",
    "Mistral": "https://api.mistral.ai/v1",
}

for name, url in services.items():
    try:
        req = urllib.request.Request(url)
        with urllib.request.urlopen(req, context=ctx, timeout=6) as resp:
            print(f"{name}: HTTP {resp.status}")
    except urllib.error.HTTPError as exc:
        print(f"{name}: HTTP {exc.code} (reachable, auth may be required)")
    except Exception as exc:
        print(f"{name}: not reachable ({exc})")

Recommended output

  • Reachable providers
  • Providers that need valid credentials
  • Best provider by task type
  • Cost or quota notes
  • Risks or missing coverage

Guardrails

  • Do not store API keys unless the user explicitly approves it.
  • Mask secrets in notes and logs.
  • Keep routing recommendations based on verified results, not assumptions.
  • Treat provider availability and quotas as time-sensitive and re-check when needed.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Openclaw Router

Intelligent Model Routing - Save 60% on AI Costs / 智能路由系统 - 节省 60% 成本

Registry SourceRecently Updated
4280Profile unavailable
Web3

ANVX - Token Economy Intel

Track and optimize AI API spending across 19 providers with live pricing and 6 optimization modules.

Registry SourceRecently Updated
1941Profile unavailable
Web3

Veroq

Provide verified AI intelligence on markets, assets, sentiment, and economic data with live prices, signals, analysis, and fact-checking from 1,000+ tickers...

Registry SourceRecently Updated
1350Profile unavailable
Automation

Model

A comprehensive AI agent skill for anyone working with AI models. Helps you choose the right model for any task, write effective prompts, evaluate model outp...

Registry Source
3370Profile unavailable