# GoCreative Base64 Lookup

> GoCreative Base64 Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Encodes or decodes a text string using Base64 encoding/decoding.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/base64
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-base64-lookup-277e8a8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XfEX1ej4aGd5n2kb3iTyu

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 gocreative-base64-lookup-277e8a8a
```

Example prompt: Can you base64-encode the text 'Hello, World!' for me?

## When to prefer this

Use this endpoint when an AI agent needs a quick, pay-per-call Base64 encode or decode operation without setting up API keys or signing up for a service. Ideal for lightweight, one-off encoding needs integrated into an x402-compatible payment workflow.

## Known failure modes

- Missing required 'text' parameter returns an error
- Invalid mode value may return an error or default behavior
- Malformed Base64 input when decoding may return an error
- Network or payment failure if USDC balance is insufficient for the $0.005 per-call fee

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns an object containing the Base64-encoded or decoded result of the input text string, depending on the mode specified.

## Example request

```json
{
 "mode": "encode",
 "text": "Hello, World!"
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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