# SixPath Contract Events

> SixPath Contract Events is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.127856/call, status unknown (last checked 2026-09-14).

Fetches on-chain events emitted by a smart contract on a specified blockchain network

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/contract-events
- Price: $0.127856/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-contract-events-6fc88ec7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pj2k1ZcYborGqlVEYuglD

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 sixpath-contract-events-6fc88ec7 -d '<json body>'
```

Example prompt: Can you pull all the on-chain events emitted by the contract at 0xAbC1234...def on the Ethereum chain?

## When to prefer this

Use this endpoint when you need to retrieve historical or recent on-chain event logs for a specific smart contract on a named blockchain. Prefer this over general blockchain explorers when you need programmatic, pay-per-call access via the x402 micropayment protocol on Base chain without API key management.

## Known failure modes

- Invalid or unsupported chain name returns an error or empty result
- Malformed or non-existent contract address returns empty events array or error
- Contract has no events emitted returns count of 0 and empty events array
- Network timeout or upstream RPC failure returns a server error
- Payment not processed via x402 protocol returns 402 Payment Required

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns an object containing the blockchain name, the queried contract address, the total count of events found, and an array of event objects emitted by that contract.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain name"
  },
  "contract": {
   "type": "string",
   "description": "Contract address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "count": {
   "type": "integer"
  },
  "events": {
   "type": "array"
  },
  "contract": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-contract-events-6fc88ec7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
