# Spraay Tax Report (IRS 8949)

> Spraay Tax Report (IRS 8949) is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Retrieves a tax report with IRS Form 8949-compatible capital gains/loss data for crypto transactions.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/tax/report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-929e0fd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UQaPjisfF0aOfvtvVx14s

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 gateway-spraay-app-929e0fd7
```

Example prompt: Can you pull my crypto tax report with IRS 8949 data using report ID 'rpt_abc123'? I need it to file my capital gains.

## When to prefer this

Use this endpoint when you need to retrieve a pre-generated crypto tax report with IRS 8949-formatted capital gains and loss events, particularly for users filing US taxes on crypto transactions.

## Known failure modes

- Missing or invalid reportId returns an error or empty result
- Report not found for the given reportId
- Authentication or payment failure via x402 protocol
- Service unavailable or gateway timeout

## How this service works

Retrieve tax report with IRS 8949-compatible data.

## Output

Returns a tax report object containing an array of taxable events compatible with IRS Form 8949, including capital gains and losses from crypto transactions.

## 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",
     "properties": {
      "reportId": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "events": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-929e0fd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
