## Get markdown. `client.browserRendering.markdown.create(MarkdownCreateParamsparams, RequestOptionsoptions?): MarkdownCreateResponse` **post** `/accounts/{account_id}/browser-rendering/markdown` Gets markdown of a webpage from provided URL or HTML. Control page loading with `gotoOptions` and `waitFor*` options. ### Parameters - `MarkdownCreateParams = Variant0 | Variant1` - `MarkdownCreateParamsBase` - `Variant0 extends MarkdownCreateParamsBase` - `Variant1 extends MarkdownCreateParamsBase` ### Returns - `MarkdownCreateResponse = string` Markdown content. ### 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 markdown = await client.browserRendering.markdown.create({ account_id: 'account_id', url: 'https://www.example.com/', }); console.log(markdown); ``` #### Response ```json { "success": true, "errors": [ { "code": 0, "message": "message" } ], "result": "result" } ```