## Retrieve `client.Models.Get(ctx, model) (*LlamaModel, error)` **get** `/models/{model}` ### Parameters - **model:** `string` ### Returns - `LlamaModel` ### Example ```go package main import ( "context" "fmt" "github.com/stainless-sdks/-go" "github.com/stainless-sdks/-go/option" ) func main() { client := llamaapi.NewClient( option.WithAPIKey("My API Key"), ) llamaModel, err := client.Models.Get(context.TODO(), "Llama-3.3-70B-Instruct") if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", llamaModel.ID) } ```