## Retrieve `client.models.retrieve(stringmodel, RequestOptionsoptions?): LlamaModel` **get** `/models/{model}` ### Parameters - **model:** `string` ### Returns - `LlamaModel` ### Example ```typescript import LlamaAPIClient from 'llama-api-client'; const client = new LlamaAPIClient({ apiKey: 'My API Key', }); const llamaModel = await client.models.retrieve('Llama-3.3-70B-Instruct'); console.log(llamaModel.id); ```