⚡ Interactive Guide

Get Started in 60 Seconds

Five steps from zero to your first AI-powered API call. Your progress is saved automatically.

1
2
3
4
5
Step 1 of 5

Create Your Account

Sign up for free and get 250 credits immediately — enough for dozens of API calls across all 61 tools. No credit card required.

Create Account →

Already have an account? Go to Dashboard

Step 2 of 5

Get Your API Key

After signing in, your API key appears on the Dashboard. It starts with arch_. Paste it below to personalize the examples in this guide.

bash
# Save as an environment variable
export ARCH_API_KEY="arch_your_key_here"
Step 3 of 5

Make Your First Call

Let's hit the search-web endpoint — the simplest way to see Arch Tools in action. 5 credits per call.

bash
curl -X POST https://archtools.dev/v1/tools/search-web \
  -H "Authorization: Bearer $ARCH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "latest AI news", "num_results": 3}'
Example Response
{
  "results": [
    {
      "title": "OpenAI Launches GPT-5 With...",
      "url": "https://example.com/gpt5",
      "snippet": "OpenAI today announced..."
    }
  ],
  "credits_used": 5,
  "credits_remaining": 245
}

Try it now — paste the curl command into your terminal. You should see real search results come back instantly.

Step 4 of 5

Explore the Playground

The Playground lets you test all 61 tools interactively — pick a tool, tweak parameters, and see live results with generated code snippets.

🔍
Search & Web
12 tools · scrape, search, extract
🧠
AI & ML
15 tools · generate, summarize, analyze
📊
Crypto & Finance
8 tools · prices, sentiment, news

Or jump straight to the Quick-Start Code Generator to get a working code snippet in Python, Node.js, or curl for any tool.

Open Playground →
Step 5 of 5

Connect via MCP

Add all 61 tools to Claude Desktop, Cursor, or Windsurf as native MCP tools. Paste this into your editor's MCP config:

json · mcp config
{
  "mcpServers": {
    "archtools": {
      "url": "https://arch-tools-mcp.onrender.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

For detailed setup instructions, see the full MCP setup guide.

What's Next?