# Techforce Agents Business Leads

> Techforce Agents Business Leads is a paid API for AI agents from techforce-agents.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches Google Maps business lead data including name, category, phone, website, email, address, and hours for a given search query and location

## Facts

- Endpoint: GET https://techforce-agents.onrender.com/api/business-leads
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/techforce-agents-business-leads-3546ce6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bSgl3u3CX_JjSA8_tnDbl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability techforce-agents-business-leads-3546ce6b
```

Example prompt: Can you pull me 50 business leads for dental clinics in Chicago — I need their names, phone numbers, emails, addresses, and websites for a sales outreach campaign?

## When to prefer this

Choose this endpoint when you need structured business contact data (phone, email, website, address, hours) for businesses matching a keyword in a specific city, especially for sales prospecting, market research, or competitor analysis. It sources from Google Maps, making it broadly applicable globally across business categories. Prefer this over web scraping when you need clean, structured records delivered on demand.

## Known failure modes

- Missing required 'q' or 'location' query parameters returns an error
- 'max' value exceeding 1,000 may be rejected or capped
- Sparse or niche search queries in small cities may return fewer results than requested
- Email field may be empty if not publicly listed on Google Maps
- Payment failure (insufficient USDC balance) blocks the request

## How this service works

Google Maps business leads on demand with key details including business name, category, phone, website, email, address, and operating hours. Get leads for $0.05 per record (minimum 1, up to 1,000). Simply enter your search query, target location, and required number of leads. Discover relevant business prospects in any city, anywhere in the world.

Powered by Techforce Global — explore more at https://techforceglobal.com

## Output

Returns an array of business lead objects, each containing: business name, category, phone number, website URL, company email (when available), full street address, and working hours broken down by day. Up to 1,000 records per request at $0.05 per record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q",
      "location"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search text / keyword, e.g. 'Coffee shop'"
      },
      "max": {
       "type": "integer",
       "description": "Number of leads to return (min 1, max 1000)"
      },
      "location": {
       "type": "string",
       "description": "City or area, e.g. 'London'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "phone": {
          "type": "string",
          "description": "Phone number"
         },
         "address": {
          "type": "string",
          "description": "Full address"
         },
         "website": {
          "type": "string",
          "description": "Website URL"
         },
         "category": {
          "type": "string",
          "description": "Business category"
         },
         "businessName": {
          "type": "string",
          "description": "Business name"
         },
         "companyEmail": {
          "type": "string",
          "description": "Email (if found)"
         },
         "workingHours": {
          "type": "object",
          "description": "Opening hours by day"
         }
        }
       },
       "description": "Array of business leads"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/techforce-agents-business-leads-3546ce6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from techforce-agents.onrender.com](https://www.zero.xyz/host/techforce-agents.onrender.com/llms.txt)
