# CryptoPulse Crypto Tax Guide

> CryptoPulse Crypto Tax Guide is a paid API for AI agents from cryptopulse-xi-five.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns jurisdiction-specific crypto tax obligations, optimization strategies, and reporting tool recommendations

## Facts

- Endpoint: GET https://cryptopulse-xi-five.vercel.app/api/tax
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-crypto-tax-guide-7f3ac962
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tJ_ZACfZ--YsgqMNJKyEv

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 cryptopulse-crypto-tax-guide-7f3ac962
```

Example prompt: What are my crypto tax obligations in the United States — including how staking rewards and DeFi trades are treated — and which tax reporting tools would you recommend for filing?

## When to prefer this

Choose this endpoint when a user needs jurisdiction-specific crypto tax guidance, optimization tips, or reporting tool recommendations — particularly for DeFi, staking, and trading scenarios — rather than generic financial advice. Best used before tax filing season or when entering a new jurisdiction's crypto market.

## Known failure modes

- Unsupported or unrecognized jurisdiction returns generic or empty guidance
- Rapidly changing tax laws may cause outdated information to be returned
- Ambiguous jurisdiction input (e.g. state vs country level) may produce mismatched guidance
- Network or payment verification failure returns 402 or 5xx error

## How this service works

Jurisdiction-specific crypto tax obligations, optimization strategies and reporting-tool picks. For crypto tax and accounting agents.

## Output

A structured guide covering jurisdiction-specific crypto tax rules (capital gains treatment, income classification, reporting thresholds), optimization strategies (tax-loss harvesting, holding period considerations), and recommendations for crypto tax reporting software appropriate to the user's country.

## Example request

```json
{
 "country": "US",
 "tax_year": "2024",
 "activities": "hold,trade,staking"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string",
       "description": "US | UK | DE | AU | CA | SG | FR | IN | JP | KR | AE | CH"
      },
      "tax_year": {
       "type": "string",
       "description": "2025 | 2026"
      },
      "activities": {
       "type": "string",
       "description": "trading | staking | mining | defi | nfts | airdrops | payments"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "country": "US",
  "best_software": [
   "Koinly",
   "CoinTracking",
   "TaxBit"
  ],
  "reporting_forms": [
   "Form 8949",
   "Schedule D"
  ],
  "staking_taxed_as": "ordinary income at receipt",
  "capital_gains_long": "20% max (held >1yr)",
  "capital_gains_short": "37% max (held <1yr)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptopulse-crypto-tax-guide-7f3ac962/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse-xi-five.vercel.app](https://www.zero.xyz/host/cryptopulse-xi-five.vercel.app/llms.txt)
