# /public/rebranding/{org_id}/products/{product_id}/{asset} - Get a rebranding asset image **GET /public/rebranding/{org_id}/products/{product_id}/{asset}** Serves a rebranding asset as binary data, with no authentication, so a page can point an `` straight at it. Branding is what a partner already shows to its own customers on a login screen. Rate-limited to 10 requests / 30s per client. The response carries an ETag and Last-Modified (conditional requests answer 304), and a Content-Security-Policy that neutralises an uploaded SVG. ## Servers - Backend API server (port 8080): https://api.your-domain.com/api (Backend API server (port 8080)) - Collect API server (port 8081): https://collect.your-domain.com/api (Collect API server (port 8081)) ## Parameters ### Path parameters - **org_id** (string) Logto organization ID that owns the branding - **product_id** (string) - **asset** (string) ## Responses ### 200 Asset binary #### Headers - **ETag** (string) - **Cache-Control** (string) #### Body: image/svg+xml (string(binary)) string(binary) ### 304 Not modified ### 400 Bad request - validation error #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) ### 404 Resource not found #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) ### 429 Rate limit exceeded [Powered by Bump.sh](https://bump.sh)