# PaySponge Purchase Status Checker

> PaySponge Purchase Status Checker is a free API for AI agents from api.paysponge.com, callable via x402, Free, status unknown (last checked 2026-09-10).

Checks the status of a paid purchase by its text ID on the PaySponge platform.

## Facts

- Endpoint: GET https://api.paysponge.com/x402/purchase/svc_d6kszbre4qwg5n4n4/status/%7BtextId%7D
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-paysponge-com-a5a6576a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H4epz9dlikTszd_FD_DKb

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-paysponge-com-a5a6576a
```

Example prompt: Can you check the status of my PaySponge purchase with text ID txn_abc123xyz — I want to know if my paid access has been confirmed?

## When to prefer this

Use this endpoint when you need to confirm whether a specific PaySponge purchase has been completed, is still pending, or has failed — particularly after initiating an on-chain crypto payment and needing to verify the resulting access grant before proceeding.

## Known failure modes

- Text ID not found — returns 404 or error indicating no matching purchase
- Invalid text ID format — schema validation error
- Purchase still pending — status returned reflects incomplete state
- Network or service downtime — connection timeout or 5xx error

## How this service works

API payment gateway dashboard

## Output

A JSON object indicating the current status of the specified paid purchase (e.g. confirmed, pending, failed), keyed to the provided text ID.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string"
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

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