## Get json. `client.browserRendering.json.create(JsonCreateParamsparams, RequestOptionsoptions?): JsonCreateResponse` **post** `/accounts/{account_id}/browser-rendering/json` Gets json from a webpage from a provided URL or HTML. Pass `prompt` or `schema` in the body. Control page loading with `gotoOptions` and `waitFor*` options. ### Parameters - `JsonCreateParams = Variant0 | Variant1` - `JsonCreateParamsBase` - `Variant0 extends JsonCreateParamsBase` - `Variant1 extends JsonCreateParamsBase` ### Returns - `JsonCreateResponse = Record` ### 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 json = await client.browserRendering.json.create({ account_id: 'account_id', html: '

Hello World!

', }); console.log(json); ``` #### Response ```json { "result": { "foo": {} }, "success": true, "errors": [ { "code": 0, "message": "message" } ] } ```