## List models **get** `/models` Lists the currently available models, and provides basic information about each one such as the owner and availability. ### Returns - `data: array of Model` - `id: string` The model identifier, which can be referenced in the API endpoints. - `created: number` The Unix timestamp (in seconds) when the model was created. - `object: "model"` The object type, which is always "model". - `"model"` - `owned_by: string` The organization that owns the model. - `object: "list"` - `"list"` ### Example ```http curl https://api.openai.com/v1/models \ -H "Authorization: Bearer $OPENAI_API_KEY" ``` #### Response ```json { "data": [ { "id": "id", "created": 0, "object": "model", "owned_by": "owned_by" } ], "object": "list" } ``` ### Example ```http curl https://api.openai.com/v1/models \ -H "Authorization: Bearer $OPENAI_API_KEY" ``` #### Response ```json { "object": "list", "data": [ { "id": "model-id-0", "object": "model", "created": 1686935002, "owned_by": "organization-owner" }, { "id": "model-id-1", "object": "model", "created": 1686935002, "owned_by": "organization-owner", }, { "id": "model-id-2", "object": "model", "created": 1686935002, "owned_by": "openai" }, ] } ```