You can change the method type for all the requests you send with scrape.do.
You can use GET, POST, PUT, DELETE, OPTIONS, HEAD, PATCH types with the same url and parameters!
Examples
-- CODE language-shell --
curl -d 'parameter=test1' -X GET "http://api.scrape.do/?token=API_TOKEN&url=http://httpbin.org/anything"
-- CODE language-shell --
curl -H 'Content-Type: application/json -d '{"key":"value"}' -X POST "http://api.scrape.do/?token=API_TOKEN&url=http://httpbin.org/anything"
-- CODE language-shell --
curl -d 'parameter=test2' -X PATCH "http://api.scrape.do/?token=API_TOKEN&url=http://httpbin.org/anything"