# NetIntel API — Long-Form Text Translation

> NetIntel API — Long-Form Text Translation is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Translates long-form text to a target language with quality grading, word count, and service scoring via pay-per-call micropayment

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/translate/long
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-api-long-form-text-translation-f4e93572
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4l5-Sa2l5CN0Ixp6dljp2

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 netintel-api-long-form-text-translation-f4e93572 -d '<json body>'
```

Example prompt: Translate this long article about the James Webb Space Telescope into German and tell me what grade the translation gets: 'The James Webb Space Telescope has captured its deepest infrared image of the universe yet, revealing thousands of galaxies in a tiny patch of sky.'

## When to prefer this

Use this endpoint when you need to translate longer texts (multi-sentence, paragraph, or article-length) with accompanying quality grading and service scoring. Prefer it over basic translation APIs when you need a confidence/grade signal alongside the translated output. Best for agents that need to assess translation quality programmatically, not just receive raw translated text.

## Known failure modes

- Unsupported language pair returns an error or low service_score
- Text too short for 'long' tier may be rejected or mis-tiered
- Payment failure via x402 returns 402 status with payment details
- Missing or malformed request body returns 400 validation error
- Rate limiting or server overload on Railway returns 503

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object containing: the translated text in the target language, the detected source language, the target language, a quality grade (e.g. 'A'), word count of the translation, a service score (0-100), a tier label ('long'), and a boolean indicating whether the source language was auto-detected.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "text",
      "target"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "The text to translate. Max 2000 words (and 50KB). For shorter snippets use the cheaper /translate/short. Aliases also accepted: q, input, content, message."
      },
      "source": {
       "type": "string",
       "description": "Optional source language (ISO 639-1 code or English name). When omitted, the source language is auto-detected. Aliases also accepted: source_language, from."
      },
      "target": {
       "type": "string",
       "description": "Target language as an ISO 639-1 code (e.g. \"de\") or English name (e.g. \"German\"). 30+ languages mapped directly; other values (endonyms, qualified names like \"Brazilian Portuguese\") are interpreted by the model with a targetHint finding. Required. Aliases also accepted: target_lang, target_language, to, lang, targetLanguage. (The response returns this as target_language.)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tier": {
       "type": "string",
       "description": "Pricing tier — always \"long\" for this endpoint"
      },
      "grade": {
       "type": "string",
       "description": "Letter grade A-F derived from service_score"
      },
      "findings": {
       "type": "array",
       "description": "Plain-string hints — e.g. a targetHint string when the target language was model-interpreted"
      },
      "word_count": {
       "type": "number",
       "description": "Word count of the input text"
      },
      "translation": {
       "type": "string",
       "description": "The translated text, formatting preserved"
      },
      "service_score": {
       "type": "number",
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "long",
  "grade": "A",
  "findings": [],
  "word_count": 26,
  "translation": "Das James-Webb-Weltraumteleskop hat sein bisher tiefstes Infrarotbild des Universums aufgenommen und Tausende von Galaxien in einem winzigen Himmelsausschnitt enthüllt.",
  "service_score": 100,
  "source_detected": true,
  "source_language": "en",
  "target_language": "de"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-api-long-form-text-translation-f4e93572/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
