# 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.03/call, status unknown (last checked 2026-09-15).

## Facts

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

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 api-generate-3f4f4a45 -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",
      "prompt"
     ],
     "properties": {
      "model": {
       "type": "string",
       "description": "Ollama model name"
      },
      "format": {
       "type": "string",
       "description": "Output format, e.g. json"
      },
      "prompt": {
       "type": "string",
       "description": "Text to complete"
      },
      "stream": {
       "type": "boolean",
       "description": "Streamed response (true) or single object (false)"
      },
      "system": {
       "type": "string",
       "description": "Optional system instruction"
      },
      "keep_alive": {
       "type": "string",
       "description": "How long to keep the model loaded in memory"
      }
     },
     "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": {
      "done": {
       "type": "boolean"
      },
      "model": {
       "type": "string"
      },
      "response": {
       "type": "string"
      },
      "created_at": {
       "type": "string"
      },
      "eval_count": {
       "type": "integer"
      },
      "total_duration": {
       "type": "integer"
      },
      "prompt_eval_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-generate-3f4f4a45/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)
