> 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 and filter models with the Go SDK.

# Models

```go
// List all models
all, _ := client.Models.List(ctx, meshapi.ListModelsParams{})

// List free models only
free, _ := client.Models.Free(ctx)

// Filter by provider
bedrock, _ := client.Models.List(ctx, meshapi.ListModelsParams{
    Provider: "amazon-bedrock",
})

for _, m := range bedrock {
    fmt.Printf("%s: $%v/1k tokens\n", m.ID, m.Pricing.PromptUSDPer1K)
}
```