## Retrieve embed Code HTML `client.stream.embed.get(stringidentifier, EmbedGetParamsparams, RequestOptionsoptions?): EmbedGetResponse` **get** `/accounts/{account_id}/stream/{identifier}/embed` Fetches an HTML code snippet to embed a video in a web page delivered through Cloudflare. On success, returns an HTML fragment for use on web pages to display a video. On failure, returns a JSON response body. ### Parameters - `identifier: string` A Cloudflare-generated unique identifier for a media item. - `params: EmbedGetParams` - `account_id: string` The account identifier tag. ### Returns - `EmbedGetResponse = string` ### 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 embed = await client.stream.embed.get('ea95132c15732412d22c1476fa83f27a', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(embed); ``` #### Response ```json "" ```