# Links ## Get Links. `client.browserRendering.links.create(LinkCreateParamsparams, RequestOptionsoptions?): LinkCreateResponse` **post** `/accounts/{account_id}/browser-rendering/links` Get links from a web page. ### Parameters - `LinkCreateParams = Variant0 | Variant1` - `LinkCreateParamsBase` - `Variant0 extends LinkCreateParamsBase` - `Variant1 extends LinkCreateParamsBase` ### Returns - `LinkCreateResponse = Array` ### 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 links = await client.browserRendering.links.create({ account_id: 'account_id', html: '

Hello World!

', }); console.log(links); ``` #### Response ```json { "result": [ "string" ], "success": true, "errors": [ { "code": 0, "message": "message" } ] } ``` ## Domain Types ### Link Create Response - `LinkCreateResponse = Array`