# SSDF GPU-as-a-Service Atlas

> SSDF GPU-as-a-Service Atlas is a paid API for AI agents from www.ssdf.site, paid per call via x402, $79/call, status unknown (last checked 2026-09-15).

Purchases access to the SSDF Atlas GPU-as-a-Service SKU for $79 USDC, returning a Passport NFT and a fulfillment token redeemable for GPU compute resources.

## Facts

- Endpoint: GET https://www.ssdf.site/api/x402/ssdf-gpuaas-atlas
- Price: $79/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ssdf-gpu-as-a-service-atlas-fe99b25f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9hb9rwtMyrcZ8rW-KV_e3

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 ssdf-gpu-as-a-service-atlas-fe99b25f
```

Example prompt: Buy me the SSDF Atlas GPU-as-a-service plan — pay the $79 USDC fee on Base and get back the Passport and fulfillment token so I can start using the GPU resources.

## When to prefer this

Choose this endpoint when you need to programmatically purchase GPU compute access via a crypto-native (USDC on Base) payment flow and receive a transferable Passport plus a fulfillment token in a single call. Prefer it over traditional cloud GPU marketplaces when your agent workflow requires stablecoin settlement, on-chain Passport issuance, or the x402 HTTP payment standard.

## Known failure modes

- Insufficient USDC balance — payment fails before a Passport is minted
- x402 payment protocol negotiation failure — agent must support HTTP 402 flow
- Invalid or expired payment credential — returns non-ok response
- Network/Base chain congestion causing settlement delay
- SKU out of stock or temporarily unavailable — ok: false with no fulfillment token

## How this service works

SSDF INC digital store. Priced in USD, settled in USDC on Base through Coinbase Business. Humans and agents buy the same SKU. Every settlement mints a Passport.

## Output

Returns a JSON object with: `ok` (boolean purchase success), `sku` (confirming 'ssdf-gpuaas-atlas'), `passport` (a minted Passport token ID tied to this purchase), and `fulfillment` (a URL path like /api/fulfillment/{token} used to redeem the actual GPU compute resource).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {}
  },
  "output": {
   "type": "object",
   "properties": {
    "ok": {
     "type": "boolean"
    },
    "sku": {
     "type": "string"
    },
    "passport": {
     "type": "string"
    },
    "fulfillment": {
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "sku": {
    "type": "string"
   },
   "passport": {
    "type": "string"
   },
   "fulfillment": {
    "type": "string"
   }
  }
 },
 "example": {
  "ok": true,
  "sku": "ssdf-gpuaas-atlas",
  "passport": "{id}",
  "fulfillment": "/api/fulfillment/{token}"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ssdf-gpu-as-a-service-atlas-fe99b25f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.ssdf.site](https://www.zero.xyz/host/www.ssdf.site/llms.txt)
