## List `client.blobs.list(BlobListParamsquery?, RequestOptionsoptions?): BlobListResponse` **get** `/v1/blob` List blobs in your account ### Parameters - **query:** `BlobListParams` - **prefix:** `string` If specified, only include blobs that start with this string ### Returns - **BlobListResponse:** `Array` List of blobs that you’ve stored - **key:** `string` - **lastModified:** `string` Creation date of the object - **size:** `number` Size in bytes of the object ### Example ```node import ValTown from '@valtown/sdk'; const client = new ValTown(); const blobs = await client.blobs.list(); console.log(blobs); ```