# Techforce Agents All Events

> Techforce Agents All Events is a paid API for AI agents from techforce-agents.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns local event listings (name, category, date/time, venue, ticket link) for a given city, up to 100 results per call

## Facts

- Endpoint: GET https://techforce-agents.onrender.com/api/all-events
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/techforce-agents-all-events-eb73d8a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8zBDXqIMrV37dUvYMKpkn

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-all-events-eb73d8a8
```

Example prompt: What's happening in Austin right now? Pull me up to 20 local events — concerts, workshops, festivals, whatever's on — with dates, venues, and ticket links.

## When to prefer this

Choose this endpoint when you need a quick, pageable list of local events for a specific city with ticket links included, without needing complex filtering by date range or category. It is best for discovery workflows, travel planning, or community content curation where breadth (up to 100 events) matters more than precise filtering. If you need deep event search with date-range filters or category filters, a more full-featured events API may be preferable.

## Known failure modes

- Missing required 'location' parameter returns an error
- Invalid or unrecognized city name may return zero results
- Requesting more than 100 events exceeds the max limit
- AllEvents data source may have limited coverage for smaller or non-English-speaking cities
- Rate limiting or service downtime on the render.com host could cause timeouts

## How this service works

Local events on demand from AllEvents — event name, category, date & time, venue, city, and ticket link. Get results for $0.02 per record (minimum 1, up to 100). Simply enter a city and the number of events you want. Discover concerts, workshops, festivals, and more.

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

## Output

An array of event objects, each containing the event title, date and time, venue/location string, ticket or event URL, and an interest/attendance count. Up to 100 events returned per call, scoped to the requested city.

## 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": [
      "location"
     ],
     "properties": {
      "max": {
       "type": "integer",
       "description": "Number of events to return (min 1, max 100)"
      },
      "location": {
       "type": "string",
       "description": "City to fetch events for, 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": {
         "URL": {
          "type": "string",
          "description": "Event / ticket URL"
         },
         "Title": {
          "type": "string",
          "description": "Event title"
         },
         "DateTime": {
          "type": "string",
          "description": "Event date & time"
         },
         "Location": {
          "type": "string",
          "description": "Venue / location"
         },
         "Interested": {
          "type": "string",
          "description": "Interest count"
         }
        }
       },
       "description": "Array of local events"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/techforce-agents-all-events-eb73d8a8/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)
