# DeepSeek List Models

> DeepSeek List Models is a paid API for AI agents from DeepSeek at deepseek.mpp.paywithlocus.com, paid per call via MPP, $0.003/call, status unknown (last checked 2026-09-13).

Lists all available DeepSeek AI models accessible via the API

## Facts

- Endpoint: POST https://deepseek.mpp.paywithlocus.com/deepseek/list-models
- Price: $0.003/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Provider: DeepSeek
- Docs: https://api-docs.deepseek.com
- Website: https://deepseek.com
- Tags: llm, reasoning, code, chat, chain-of-thought, ai
- Canonical page: https://www.zero.xyz/c/deepseek-list-models-4121bda4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Xr_XmyFekFQ1X9XumH2R

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 deepseek-list-models-4121bda4 -d '<json body>'
```

Example prompt: What DeepSeek models are currently available to use — can you give me the full list of model IDs like deepseek-v4-flash or deepseek-v4-pro?

## When to prefer this

Use this endpoint when you need to programmatically discover which DeepSeek model IDs are currently available before constructing a chat, reasoning, or FIM request. Prefer this over hardcoding model names, as new models may be added or deprecated over time.

## Known failure modes

- Invalid or missing API credentials — returns authentication error
- Malformed request body — returns 400 bad request
- Service unavailable or rate limited — returns 429 or 503
- Network timeout reaching the proxy endpoint

## How this service works

List available DeepSeek models with owner and availability information.

## Output

Returns a JSON object with a 'data' array listing all available DeepSeek models, each with an 'id' (e.g. 'deepseek-v4-flash', 'deepseek-v4-pro'), an 'object' type set to 'model', and an 'owned_by' field set to 'deepseek'. The outer object type is 'list' and the response includes a 'success' boolean.

## Example request

```json
{
 "model": "deepseek-chat",
 "messages": [
  {
   "role": "user",
   "content": "What models are available?"
  }
 ],
 "max_tokens": 256,
 "temperature": 1
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {},
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepseek-list-models-4121bda4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deepseek.mpp.paywithlocus.com](https://www.zero.xyz/host/deepseek.mpp.paywithlocus.com/llms.txt)
