Skip to main content
Use this endpoint to retrieve a user’s full-body Roblox avatar image. The image is sourced from the Roblox thumbnails API at 720×720 PNG resolution. By default the endpoint returns a JSON object containing the image URL. Pass download=true to instead receive the raw PNG binary directly in the response body, which is useful for displaying the avatar without an extra round trip to the Roblox CDN.
This endpoint only works for your own account. The authenticated session must belong to the same userId in the path. Requests are rate-limited to 5 per minute.
The user must have a Roblox account linked to their CA Colombia profile. If no Roblox provider is connected, the request will return a 403 Forbidden error.

Endpoint

Path Parameters

string
required
The Snowflake ID of the user whose avatar you want to retrieve. Must match the authenticated user’s ID.

Query Parameters

string
Pass true to receive the avatar image as raw PNG binary (Content-Type: image/png) instead of a JSON response with an image URL.

Response

When download is omitted or not true, the response is a JSON object:
string
A URL pointing to the user’s full-body Roblox avatar image hosted on the Roblox CDN, at 720×720 resolution in PNG format.
When download=true, the response body is raw PNG binary with Content-Type: image/png.

Example Request (JSON URL)

Example Response (JSON URL)

Example Request (Binary Download)

When download=true, the response body is the raw PNG file with no JSON envelope.

Error Responses