# Spraay Gateway KYC Status Check

> Spraay Gateway KYC Status Check is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the KYC (Know Your Customer) verification status for a user identified by ID or wallet address.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/kyc/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-3017c9b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TXVxZc0EMuNtcQoKEgzOP

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 gateway-spraay-app-3017c9b3
```

Example prompt: Can you check the KYC verification status for the user with address 0xABC123... on the Spraay gateway?

## When to prefer this

Use this endpoint when you need to programmatically check whether a specific user or wallet address has passed KYC verification before allowing them access to regulated features, financial services, or compliance-gated actions.

## Known failure modes

- Missing both id and address query parameters — returns error or empty result
- Unknown ID or address — status may be null or not found
- Upstream KYC provider unavailable — service error response
- Invalid wallet address format — may return validation error
- Payment not processed (x402) — request blocked without payment

## How this service works

Check KYC verification status.

## Output

Returns an object containing the KYC status string (e.g. 'verified', 'pending', 'rejected') for the queried user ID or wallet address.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-3017c9b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
