# Spraay Payroll Stablecoins Token List

> Spraay Payroll Stablecoins Token List is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the list of stablecoin tokens supported for payroll disbursements on the Spraay platform.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/payroll/tokens
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-ef857eb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GmkyX7Cz5hj9YK8-f8LHd

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-ef857eb4
```

Example prompt: What stablecoins are available for payroll on Spraay? I want to see the full list of tokens I can use to pay my employees.

## When to prefer this

Use this endpoint when you need to discover which stablecoin tokens are available for payroll processing on the Spraay platform before initiating payroll runs or configuring payment options for employees.

## Known failure modes

- Payment required (402) if x402 payment header is missing or invalid
- Service unavailable if gateway is down
- Empty token list if no tokens are currently configured
- Authentication failure if credentials are invalid

## How this service works

Payroll stablecoins.

## Output

An array of stablecoin token objects supported for payroll disbursements on the Spraay platform, including token identifiers, names, and relevant metadata for each supported payroll token.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-ef857eb4/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)
