Get a Model
client.Beta.Models.Get(ctx, modelID, query) (*BetaModelInfo, error)
GET/v1/models/{model_id}
Get a specific model.
The Models API response can be used to determine information about a specific model or resolve a model alias to a model ID.
Parameters
modelID string
Model identifier or alias.
Returns
Get a Model
package main
import (
"context"
"fmt"
"github.com/anthropics/anthropic-sdk-go"
"github.com/anthropics/anthropic-sdk-go/option"
)
func main() {
client := anthropic.NewClient(
option.WithAPIKey("my-anthropic-api-key"),
)
betaModelInfo, err := client.Beta.Models.Get(
context.TODO(),
"model_id",
anthropic.BetaModelGetParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", betaModelInfo.ID)
}
Response 200
{
"id": "claude-opus-4-6",
"created_at": "2026-02-04T00:00:00Z",
"display_name": "Claude Opus 4.6",
"type": "model"
}Returns Examples
Response 200
{
"id": "claude-opus-4-6",
"created_at": "2026-02-04T00:00:00Z",
"display_name": "Claude Opus 4.6",
"type": "model"
}