Views
No views yet
1curl URL \ 2 -X POST \ 3 --data-binary @car.png \ 4 -H "Content-Type: image/png"
requests.post(ENDPOINT_URL, headers={"Content-Type": "image/png"}, data=open("car.png", 'rb').read()).json()