# GoCreative Text Translation Lookup

> GoCreative Text Translation 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).

Translates a given text string into a specified target language, returning the translated content.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/translate
- 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-text-translation-lookup-17f5d5a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0xTfARcAdu2g50zICqBFK

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-text-translation-lookup-17f5d5a0
```

Example prompt: Translate the text 'Welcome to our platform, we are glad to have you!' into French using GoCreative's translation lookup.

## When to prefer this

Choose this endpoint when an AI agent needs to translate text cheaply ($0.005/call) without API key signup, especially within a pay-per-call x402 workflow on Base. Prefer it when already using the GoCreative ecosystem for other lookups or enrichment tasks, or when no dedicated translation API key is available.

## Known failure modes

- Missing required 'text' parameter returns a 400/422 validation error
- Unsupported or invalid target language code may return an error or empty translation
- Payment of $0.005 USDC on Base not fulfilled results in HTTP 402 Payment Required
- Text too long may exceed processing limits and return an error
- Network or upstream translation service unavailability returns a 5xx error

## 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 translated version of the input text in the specified target language. The response schema is open (additionalProperties: true), so it may include the translated text, detected source language, or other translation metadata depending on the service implementation.

## 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-text-translation-lookup-17f5d5a0/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)
