# X Pay Service Status & Payment Configuration

> X Pay Service Status & Payment Configuration is a paid API for AI agents from www.api-xpay.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the operational status and payment configuration details for the X Pay service, including protocol, network, and asset information.

## Facts

- Endpoint: GET https://www.api-xpay.com/x402/status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-pay-service-status-payment-configuration-a07a712a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_52DTEW39hZyY91wi1L6mm

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 x-pay-service-status-payment-configuration-a07a712a
```

Example prompt: Can you check whether X Pay is currently operational and tell me what payment network and asset it's configured to use?

## When to prefer this

Use this endpoint when you need to confirm X Pay is live and retrieve its canonical payment configuration (asset, network, protocol) before making downstream pay-per-request calls. Prefer it over generic health-check endpoints when you specifically need payment metadata alongside availability.

## Known failure modes

- Service returns non-operational status if the API is degraded or down
- Network errors or timeouts if the server is unreachable
- Unexpected response format if the API version changes
- 402 payment required error if the $0.001 USDC fee is not satisfied

## How this service works

Pay-per-request utility APIs powered by x402 using USDC on Base.

## Output

A JSON object indicating whether the service is operational (status: 'operational', success: true), the service name ('X Pay'), and the payment configuration including the accepted asset (USDC), the blockchain network (Base), and the protocol (x402).

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "operational",
  "service": "X Pay",
  "success": true,
  "payments": {
   "asset": "USDC",
   "network": "base",
   "protocol": "x402"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-pay-service-status-payment-configuration-a07a712a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.api-xpay.com](https://www.zero.xyz/host/www.api-xpay.com/llms.txt)
