# NetIntel Embeddings API

> NetIntel Embeddings API is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts text (or batches of up to 256 strings) into 384-dimensional float vector embeddings using the multilingual-e5-small model, billed per call via x402 micropayments.

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/embeddings
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-embeddings-api-6bae305f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TIfr7kMWIm1usafF2gIWu

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-embeddings-api-6bae305f -d '<json body>'
```

Example prompt: Embed this passage as a 384-dimensional float vector: 'The quick brown fox jumps over the lazy dog' — treat it as a passage, return float encoding.

## When to prefer this

Choose this endpoint when you need lightweight, multilingual 384-dimensional embeddings with no API key or signup required, billed only on success at $0.001/call via x402. Ideal for agents building RAG pipelines, semantic search indexes, or document similarity systems that need pay-per-use access without a subscription. The multilingual-e5-small model is well-suited for cross-lingual retrieval tasks. Prefer alternatives if you need larger embedding dimensions (e.g. 1536+) for higher-fidelity semantic tasks.

## Known failure modes

- Input text exceeds 200,000 character limit across batch — validation rejection, no charge
- Batch size exceeds 256 strings — validation rejection, no charge
- Server-side upstream model failure — no charge per NetIntel policy
- Malformed JSON body or missing required 'input' field — validation error, no charge
- Invalid encoding_format value — validation rejection

## 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 with a 'data' array where each element contains the embedding index, object type ('embedding'), and a 384-element float array. Also includes the model name ('netintel-embed-small'), token usage (prompt_tokens, total_tokens), object type ('list'), dimensions (384), input_type, normalized flag, and source_model ('multilingual-e5-small').

## 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": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "Text to embed. Also accepts an array of up to 256 strings (200000 chars total). Aliases: text, inputs."
      },
      "input_type": {
       "type": "string",
       "description": "query or passage (default). Aliases: task, type."
      },
      "encoding_format": {
       "type": "string",
       "description": "float (default) or base64."
      }
     }
    },
    "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": {
      "data": {
       "type": "array",
       "description": "[{object:'embedding', index, embedding:[…384 floats]}]"
      },
      "model": {
       "type": "string",
       "description": "Always 'netintel-embed-small'"
      },
      "usage": {
       "type": "object",
       "description": "prompt_tokens, total_tokens (input-only, estimated)"
      },
      "object": {
       "type": "string",
       "description": "Always 'list'"
      },
      "dimensions": {
       "type": "number",
       "description": "Always 384"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "index": 0,
    "object": "embedding",
    "embedding": [
     0.0123,
     -0.0456,
     0.0789
    ]
   }
  ],
  "model": "netintel-embed-small",
  "usage": {
   "total_tokens": 6,
   "prompt_tokens": 6
  },
  "object": "list",
  "findings": [],
  "provider": "netintel",
  "dimensions": 384,
  "input_type": "passage",
  "normalized": true,
  "source_model": "multilingual-e5-small"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-embeddings-api-6bae305f/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)
