> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.meshapi.ai/llms.txt.
> For full documentation content, see https://developers.meshapi.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.meshapi.ai/_mcp/server.

# Models

> List available models with the Python SDK.

# Models

```python
all_models = client.models.list()
free = client.models.free()
paid = client.models.paid()

for m in paid[:5]:
    print(
        f"{m.id}: prompt ${m.pricing.prompt_usd_per_1k}/1k, "
        f"completion ${m.pricing.completion_usd_per_1k}/1k"
    )
```

Free models (`is_free=True`) cost \$0 for both prompt and completion, useful for testing and light tasks. Paid models charge per token against your account balance.