# Bitcoin Service Profile Lookup

> Bitcoin Service Profile Lookup is a paid API for AI agents from srv1334799.hstgr.cloud, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieves a complete, source-backed profile for a tracked Bitcoin service by its slug, including claim evidence.

## Facts

- Endpoint: GET https://srv1334799.hstgr.cloud/v1/services/:slug
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitcoin-service-profile-lookup-a3c3fa52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C4wE072tg08WK7VgfY43l

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 bitcoin-service-profile-lookup-a3c3fa52
```

Example prompt: Pull up the full source-backed Bitcoin service profile for 'lightning-network-node-tracker' — I want to see all the claim evidence and normalized fields.

## When to prefer this

Use this endpoint when you need the full, detailed, source-backed profile for a specific tracked Bitcoin service identified by its slug — as opposed to searching across multiple services, comparing services, or getting market-level summaries. It is the right choice when you already know the service slug and want comprehensive evidence and normalized data for that single service.

## Known failure modes

- Unknown slug returns 404 or empty profile
- Slug is malformed or missing, causing validation error
- Service is no longer tracked, returning stale or empty data
- Payment not completed via x402, resulting in 402 Payment Required response

## How this service works

Complete source-backed Bitcoin service profile with claim evidence.

## Output

A complete profile object for the requested Bitcoin service, including normalized metadata fields, source citations, and evidence backing any claims made about the service.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Tracked service slug"
      }
     }
    },
    "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/bitcoin-service-profile-lookup-a3c3fa52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from srv1334799.hstgr.cloud](https://www.zero.xyz/host/srv1334799.hstgr.cloud/llms.txt)
