# ollama.bip-rep.com

> ollama.bip-rep.com is a paid API for AI agents from ollama.bip-rep.com, paid per call via x402, $0.035/call, status unknown (last checked 2026-09-15).

## Facts

- Endpoint: POST https://ollama.bip-rep.com/v1/chat/completions
- Price: $0.035/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/v1-chat-completions-cc459e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K_vb5Ydxm1nx5KcX6juEf

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 v1-chat-completions-cc459e1f -d '<json body>'
```

## 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": [
      "model",
      "messages"
     ],
     "properties": {
      "stop": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Stop sequences"
      },
      "model": {
       "type": "string",
       "description": "Model name (OpenAI-compatible)"
      },
      "top_p": {
       "type": "number",
       "description": "Nucleus sampling threshold"
      },
      "stream": {
       "type": "boolean",
       "description": "Stream SSE chunks (true) or return one JSON object (false)"
      },
      "messages": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "role",
         "content"
        ],
        "properties": {
         "role": {
          "enum": [
           "system",
           "user",
           "assistant",
           "tool"
          ],
          "type": "string"
         },
         "content": {
          "type": "string"
         }
        },
        "additionalProperties": false
       },
       "description": "Chat messages in OpenAI format"
      },
      "max_tokens": {
       "type": "integer",
       "description": "Maximum tokens to generate"
      },
      "temperature": {
       "type": "number",
       "description": "Sampling temperature (0-2)"
      }
     },
     "additionalProperties": false
    },
    "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": {
      "id": {
       "type": "string"
      },
      "model": {
       "type": "string"
      },
      "usage": {
       "type": "object",
       "properties": {
        "total_tokens": {
         "type": "integer"
        },
        "prompt_tokens": {
         "type": "integer"
        },
        "completion_tokens": {
         "type": "int
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/v1-chat-completions-cc459e1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ollama.bip-rep.com](https://www.zero.xyz/host/ollama.bip-rep.com/llms.txt)
