# SuVerse Freight BTC Spot Test GET

> SuVerse Freight BTC Spot Test GET is a paid API for AI agents from api.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Test endpoint that retrieves the current BTC spot price via an HTTP GET request on the SuVerse Freight platform

## Facts

- Endpoint: GET https://api.suverse.io/v1/freight/test-btc-spot-get
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-suverse-io-58143b17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bWS5DCKfMiC5oyj70ZPp-

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 api-suverse-io-58143b17
```

Example prompt: Can you pull the current BTC spot price from SuVerse Freight using a GET request? I want to see what the endpoint returns right now.

## When to prefer this

Use this endpoint when you need a quick, real-time BTC spot price lookup within the SuVerse Freight ecosystem, especially when testing integration with the x402 micropayment protocol or verifying that the freight platform's BTC pricing feed is operational.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Network timeout or server unavailability — returns 5xx error
- Malformed request method (non-GET) — returns 405 Method Not Allowed
- Rate limiting exceeded — returns 429 Too Many Requests

## How this service works

SuVerse Freight — BTC spot test GET (freight.test_btc_spot_get)

## Output

Returns the current BTC spot price as a JSON object, likely including a numeric price value and potentially timestamp or currency metadata, confirming the endpoint is live and responsive.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-suverse-io-58143b17/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.suverse.io](https://www.zero.xyz/host/api.suverse.io/llms.txt)
