-
Notifications
You must be signed in to change notification settings - Fork 10.2k
[BRAPI] json endpoint docs #20981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[BRAPI] json endpoint docs #20981
Changes from 2 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5d378cd
json endpoint docs
daisyfaithauma e013509
reorder
daisyfaithauma 0ecfead
docs: Update JSON endpoint documentation with new examples and structure
omarmosid 1ec81ad
docs: Add links endpoint
omarmosid fedb13f
minor edits
daisyfaithauma 09bcd50
collapsed lines
daisyfaithauma 03b2e27
title
daisyfaithauma bc060e8
Update json-endpoint.mdx
kathayl bd7ab7b
Update json-endpoint.mdx
kathayl 8bff474
Update links-endpoint.mdx
kathayl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
src/content/docs/browser-rendering/rest-api/json-endpoint.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| --- | ||
| pcx_content_type: how-to | ||
| title: Capture structured data | ||
| sidebar: | ||
| order: 9 | ||
| --- | ||
|
|
||
| The `/json` endpoint extracts structured data from a webpage. You can specify the expected output using either a `prompt` or a `response_format` parameter which accepts a JSON schema. The endpoint returns the extracted data in JSON format. | ||
|
|
||
| ## Parameters | ||
|
|
||
| | Parameter | Mandatory | Note | | ||
| | --------------- | --------- | ---------------------------------------------------------------------------- | | ||
| | URL | yes | The URL of the webpage to extract data from. | | ||
| | prompt | no | Must supply one of `prompt` or `response_format`. | | ||
| | response_format | no | Must supply one of `prompt` or `response_format`. May include a JSON schema. | | ||
|
|
||
| ## Basic Usage | ||
|
|
||
| ### With a Prompt and JSON schema | ||
|
|
||
| This example captures webpage data by providing both a prompt and a JSON schema. If multiple headings exist, the first occurrence of each (such as `h1`, `h2`) is returned. | ||
|
|
||
| ```bash | ||
| curl --request POST 'https://api.cloudflare.com/client/v4/accounts/CF_ACCOUNT_ID/browser-rendering/json' \ | ||
| --header 'authorization: Bearer CF_API_TOKEN' \ | ||
| --header 'content-type: application/json' \ | ||
| --data '{ | ||
| "url": "http://demoto.xyz/headings", | ||
| "prompt": "Get the heading from the page. If there are many then grab the first one.", | ||
| "response_format": { | ||
| "type": "json_schema", | ||
| "json_schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "h1": { | ||
| "type": "string" | ||
| }, | ||
| "h2": { | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "h1" | ||
| ] | ||
| } | ||
| } | ||
| }' | ||
| ``` | ||
|
|
||
| #### JSON response | ||
|
|
||
| ```json title="json response" | ||
| { | ||
| "success": true, | ||
| "result": { | ||
| "h1": "Heading 1", | ||
| "h2": "Heading 2" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ### With only a prompt | ||
|
|
||
| In this example, only a prompt is provided. The endpoint will use the prompt to extract the heading information from the page. | ||
|
|
||
| ```bash | ||
| curl --request POST 'https://api.cloudflare.com/client/v4/accounts/CF_ACCOUNT_ID/browser-rendering/json' \ | ||
| --header 'authorization: Bearer CF_API_TOKEN' \ | ||
| --header 'content-type: application/json' \ | ||
| --data '{ | ||
| "url": "http://demoto.xyz/headings", | ||
| "prompt": "Get the heading from the page in the form of an object like h1, h2. If there are many headings of the same kind then grab the first one." | ||
| }' | ||
| ``` | ||
|
|
||
| #### JSON response | ||
|
|
||
| ```json title="json response" | ||
| { | ||
| "success": true, | ||
| "result": { | ||
| "h1": "Heading 1", | ||
| "h2": "Heading 2" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ### With only a JSON schema (no prompt) | ||
|
|
||
| In this case, you supply a JSON schema via the `response_format` parameter. The schema defines the structure of the extracted data. | ||
|
|
||
| ```bash | ||
| curl --request POST 'https://api.cloudflare.com/client/v4/accounts/CF_ACCOUNT_ID/browser-rendering/json' \ | ||
| --header 'authorization: Bearer CF_API_TOKEN' \ | ||
| --header 'content-type: application/json' \ | ||
| --data '{ | ||
| "url": "http://demoto.xyz/headings", | ||
| "response_format": { | ||
| "type": "json_schema", | ||
| "json_schema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "h1": { | ||
| "type": "string" | ||
| }, | ||
| "h2": { | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "h1" | ||
| ] | ||
| } | ||
| } | ||
| }' | ||
| ``` | ||
|
|
||
| #### JSON response | ||
|
|
||
| ```json title="json response" | ||
| { | ||
| "success": true, | ||
| "result": { | ||
| "h1": "Heading 1", | ||
| "h2": "Heading 2" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## Potential use-cases | ||
|
|
||
| 1. **Extract movie data:** Retrieve details like name, genre, and release date for the top 10 action movies from the IMDB top 250 list by supplying the appropriate IMDB link and JSON schema. | ||
| 2. **Weather information:** Fetch current weather conditions for a location (such as., Edinburgh) using a weather website link (like from BBC Weather). | ||
| 3. **Trending news:** Extract top trending posts on Hacker News by providing the Hacker News link along with a JSON schema that includes post title and body. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.