# Ollama — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and discover AI models from Ollama's library, finding specific variants, their sizes, context windows, and ready-to-use pull commands. Get detailed information about any model to quickly understand its capabilities and requirements before running it locally.

**Category:** Developer Tools | **Website:** [ollama.com/](https://ollama.com/) | **Docs:** [parse.bot/marketplace/524da4c5-8125-4c11-b691-3af9eefb49c0/ollama-com-api](https://parse.bot/marketplace/524da4c5-8125-4c11-b691-3af9eefb49c0/ollama-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-ollama-com-api-524da4c5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_model_detail

Get detailed information about a specific model including description, capabilities, available parameter sizes, download count, and pull/run commands.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_name` | string | Yes | Model name/slug (e.g., 'deepseek-r1', 'gemma4', 'qwen3') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ollama-com-api-524da4c5/get_model_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_name":"<string>"}'
```

### get_model_tags

Get all tags/variants for a specific model with detailed information including file sizes, context window lengths, input types, hashes, and pull commands for each variant.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model_name` | string | Yes | Model name/slug (e.g., 'deepseek-r1', 'gemma4', 'qwen3') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ollama-com-api-524da4c5/get_model_tags \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model_name":"<string>"}'
```

### search_models

Search for models on Ollama by keyword, with optional capability filters, sorting, and parameter size range filtering. Returns a list of matching models with descriptions, capabilities, available sizes, download counts, and pull commands. When min_size or max_size is specified, only models with at least one variant within the given parameter size range are returned. Combining sort=newest with a capability filter may return fewer results than sort=popular.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `capability` | string | No | Filter by capability: 'cloud', 'embedding', 'vision', 'tools', 'thinking'. Empty string means no filter. |
| `max_size` | string | No | Maximum parameter size filter (e.g., '7b', '14b', '70b'). Only models with at least one variant <= this size are included. Empty string means no maximum. |
| `min_size` | string | No | Minimum parameter size filter (e.g., '7b', '14b', '70b'). Only models with at least one variant >= this size are included. Empty string means no minimum. |
| `query` | string | No | Search keyword (e.g., 'deepseek', 'qwen3', 'gemma') |
| `sort` | string | No | Sort order: 'popular' or 'newest' |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ollama-com-api-524da4c5/search_models \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"capability":"<string>","max_size":"<string>","min_size":"<string>","query":"<string>","sort":"<string>"}'
```
