## Retrieve embed Code HTML
`stream.embed.get(stridentifier, EmbedGetParams**kwargs) -> 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
- `account_id: str`
The account identifier tag.
- `identifier: str`
A Cloudflare-generated unique identifier for a media item.
### Returns
- `str`
### Example
```python
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
embed = client.stream.embed.get(
identifier="ea95132c15732412d22c1476fa83f27a",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
print(embed)
```
#### Response
```json
""
```