Python
import requests url = "https://api.opper.ai/v3/tools/web/fetch" headers = {"Authorization": "Bearer <token>"} response = requests.post(url, headers=headers) print(response.text)
{ "error": { "code": "<string>", "message": "<string>", "details": "<unknown>" } }
Fetch a URL and return its content as markdown.
API key authentication. Pass your API key as a Bearer token.
Bad request
Show child attributes