# `api.lots.get` > `GET /Lot/{id}` — Catalog **Python** ```python api.lots.get(lot_id: int) -> LotDto ``` **CLI** ```bash ab lots get ``` Retrieve a single lot by ID. Args: lot_id: Lot identifier. Returns: LotDto: Lot details. ## Response Returns `LotDto`. | Field | Type | Required | Description | |---|---|---|---| | `id` | `int` | yes | Lot ID | | `customerItemId` | `Optional[str]` | no | Customer item ID | | `initialData` | `Optional[LotDataDto]` | no | Initial lot data | | `overridenData` | `Optional[list[LotDataDto]]` | no | Override entries | | `catalogs` | `Optional[list[LotCatalogDto]]` | no | Catalog associations (each entry is a LotCatalogDto) | | `imageLinks` | `Optional[list[ImageLinkDto]]` | no | Attached image links | --- [← Back to api.lots](../lots.md)