# GEDX402 Llama 3.3 70B Instruct (x402 Pay-Per-Call)

> GEDX402 Llama 3.3 70B Instruct (x402 Pay-Per-Call) is a paid API for AI agents from ged-x402-llm.jvalamis.workers.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Runs inference on Meta's Llama 3.3 70B Instruct FP8 Fast model via Cloudflare Workers AI, billed per-call in USDC with no API key required

## Facts

- Endpoint: GET https://ged-x402-llm.jvalamis.workers.dev/v1/llm/llama-3.3-70b-instruct-fp8-fast
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-llama-3-3-70b-instruct-x402-pay-per-call-1c6478f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kTbNfTSPsJ4ZMP1SY7CRq

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 gedx402-llama-3-3-70b-instruct-x402-pay-per-call-1c6478f4
```

Example prompt: Ask Llama 3.3 70B: given the system prompt 'You are a helpful coding assistant', reply to the user message 'Write a Python function that reverses a linked list' and limit the response to 512 tokens — pay with USDC on Base.

## When to prefer this

Choose this endpoint when you need pay-per-call LLM inference without API key registration, want to pay in USDC via x402 on a supported chain (Base, Polygon, Arbitrum, World, Solana), and specifically want the Llama 3.3 70B Instruct FP8 Fast variant for high-quality instruction-following at a cost of $0.06 per call.

## Known failure modes

- Payment not received or insufficient USDC balance — returns HTTP 402 with payment details
- Invalid message role (not system/user/assistant) — returns validation error
- max_tokens exceeds 4096 — returns schema validation error
- Empty messages array — may return empty or error response
- Network timeout if model inference takes too long under load
- Unsupported payment network — only Base, Polygon, Arbitrum, World, Solana accepted

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object containing the model identifier ('@cf/meta/llama-3.3-70b-instruct-fp8-fast') and a 'response' string with the assistant's generated text reply to the provided conversation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-llama-3-3-70b-instruct-x402-pay-per-call-1c6478f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ged-x402-llm.jvalamis.workers.dev](https://www.zero.xyz/host/ged-x402-llm.jvalamis.workers.dev/llms.txt)
