Basic Usage

Basic Usage

Syphoon’s API provides a single API endpoint and a simple POST request sent to https://api.syphoon.com carrying three mandatory JSON body 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 snippets:

curl --location 'https://api.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{"key":"YOUR_API_KEY","url":"http://httpbin.org/ip","method":"GET"}'

Result

{
    "origin": "assigned_ip_address"
}