Skip to content

Quickstart

Send your first query to the Reach Dog AI Agent Platform in under 5 minutes.

Prerequisites

Step 1: Get Your API Key

Sign up at reach.dog and navigate to Settings > API to generate your API key. All users receive 10,000 free tokens daily -- enough for several agent queries per day at no cost.

Step 2: Send Your First Query

Use the Gap Agent to find market opportunities in a product category:

curl -X POST https://rd-gap-agent-64739540958.us-east1.run.app/a2a/gap-agent \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "method": "message/send",
    "id": "1",
    "params": {
      "message": {
        "parts": [
          {
            "kind": "text",
            "text": "Where are the gaps in the outdoor furniture market?"
          }
        ]
      }
    }
  }'

Replace YOUR_API_KEY with the key from Step 1.

Step 3: Read the Response

The response contains the agent's analysis in the result.artifacts[0].parts[0].text field. Every response includes:

  • Analysis -- The agent's findings in structured markdown
  • Data Evidence Block -- Which data tools were queried and how many rows were examined
  • Data Freshness Stamp -- When the underlying data was last refreshed

Next Steps

  • Try the Search Intent Agent to find ghost products in your catalog
  • Try the Reach Agent (display name; internal id router, endpoint /a2a/router) for questions that span multiple domains
  • See the full API Reference for all endpoints and options
  • Review Pricing for query tiers and per-tool costs