Basic Usage
Syphoon’s API provides a single API endpoint and a simple POST
request sent to https://api.syphoon.com carrying three mandatory query string parameters, for effortless crawling. These parameters consist of your API key, a method that contains the type of request you want to make (GET/POST)
, and the target URL you
want to crawl.
Sample Code
curl -d "key=YOUR_API_KEY&url=http://httpbin.org/ip&method=GET" -X POST "https://api.syphoon.com"
Result
{
"origin": "assigned_ip_address"
}