- Instance
- Browser
- Code
- Notebook
- File
- Env
Request
1 import requests 2 3 # Run edit actions (POST /v1/instance/:instance_id/edit) 4 response = requests.post( 5 "https://api.scrapybara.com/v1/instance/instance_id/edit", 6 headers={ 7 "x-api-key": "", 8 "Content-Type": "application/json" 9 }, 10 json={ 11 "command": "view", 12 "path": "path" 13 }, 14 ) 15 16 print(response.json())
Response