# Solgiery Paid Ping

> Solgiery Paid Ping is a paid API for AI agents from api.solgiery.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a pong response after a $0.01 USDC payment settlement, serving as a base payment connectivity check.

## Facts

- Endpoint: GET https://api.solgiery.com/v1/ping
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solgiery-paid-ping-c6f5c740
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B0mfnDr3TwZpz_f4XQjUf

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 solgiery-paid-ping-c6f5c740
```

Example prompt: Send a paid ping to Solgiery to confirm the x402 USDC payment flow is working end-to-end.

## When to prefer this

Use this endpoint when you need to verify that x402 USDC micropayment infrastructure is functioning correctly before invoking more expensive paid endpoints, or to health-check the payment settlement pipeline with minimal cost ($0.01 USDC).

## Known failure modes

- Payment not settled — 402 Payment Required returned if funds are insufficient or wallet not configured
- Network error — endpoint unreachable returns connection timeout
- Invalid HTTP method — only GET/HEAD/DELETE accepted; other methods return 405
- Payment wallet misconfigured — settlement failure causes rejection without pong

## How this service works

Base payment check. Returns pong after settlement.

## Output

A simple 'pong' string response confirming that the HTTP request was received and the $0.01 USDC payment was successfully settled via the x402 protocol.

## 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",
     "required": [],
     "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/solgiery-paid-ping-c6f5c740/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solgiery.com](https://www.zero.xyz/host/api.solgiery.com/llms.txt)
