# Blobs ## Base image `client.images.v1.blobs.get(stringimageId, BlobGetParamsparams, RequestOptionsoptions?): Response` **get** `/accounts/{account_id}/images/v1/{image_id}/blob` Fetch base image. For most images this will be the originally uploaded file. For larger images it can be a near-lossless version of the original. ### Parameters - `imageId: string` Image unique identifier. - `params: BlobGetParams` - `account_id: string` Account identifier tag. ### Returns - `unnamed_schema_3 = Response` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const blob = await client.images.v1.blobs.get('image_id', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(blob); const content = await blob.blob(); console.log(content); ```