Custom Headers
Custom Headers
To get customized results, you may want your requests to pass through custom headers (like cookies, agents, etc). To maintain primary request headers, have keep_headers=true. We handle blocks internally, therefore, use this feature only when you require customized results.
Sample Code
curl --header "X-MyHeader: abc" -d "key=YOUR_API_KEY&url=http://httpbin.org/ip&method=GET&keep_headers=true"
-X POST "https://api.syphoon.com"
import requests
headers = {"X-MyHeader": "abc"}
data = {
"key": "YOUR_API_KEY",
"method": "GET",
"url": "http://httpbin.org/ip",
"keep_headers": "true"
}
response = requests.post("https://api.syphoon.com", headers=headers, data=data)
print(response.json())
using System;
using System.Net.Http;
using System.Collections.Generic;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-MyHeader", "abc");
var values = new Dictionary<string, string>
{
{ "key", "YOUR_API_KEY" },
{ "method", "GET" },
{ "url", "http://httpbin.org/ip" },
{ "keep_headers", "true" }
};
var content = new FormUrlEncodedContent(values);
var response = await client.PostAsync("https://api.syphoon.com", content);
var responseString = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseString);
}
}
package main
import (
"bytes"
"fmt"
"net/http"
)
func main() {
url := "https://api.syphoon.com"
data := []byte("key=YOUR_API_KEY&method=GET&url=http://httpbin.org/ip&keep_headers=true")
headers := map[string]string{
"X-MyHeader": "abc",
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(data))
if err != nil {
panic(err)
}
for k, v := range headers {
req.Header.Set(k, v)
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response status:", resp.Status)
}
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
URL url = new URL("https://api.syphoon.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
conn.setRequestProperty("X-MyHeader", "abc");
String data = "key=YOUR_API_KEY&method=GET&url=http://httpbin.org/ip&keep_headers=true";
try (OutputStream os = conn.getOutputStream()) {
os.write(data.getBytes());
os.flush();
}
System.out.println("Response Code: " + conn.getResponseCode());
} catch (Exception e) {
e.printStackTrace();
}
}
}
const axios = require("axios");
const data = new URLSearchParams();
data.append("key", "YOUR_API_KEY");
data.append("method", "GET");
data.append("url", "http://httpbin.org/ip");
data.append("keep_headers", "true");
axios
.post("https://api.syphoon.com", data, {
headers: { "X-MyHeader": "abc" },
})
.then((response) => console.log(response.data))
.catch((error) => console.error(error));
<?php
$url = "https://api.syphoon.com";
$data = [
"key" => "YOUR_API_KEY",
"method" => "GET",
"url" => "http://httpbin.org/ip",
"keep_headers" => "true"
];
$options = [
"http" => [
"header" => "Content-type: application/x-www-form-urlencoded\r\nX-MyHeader: abc\r\n",
"method" => "POST",
"content" => http_build_query($data)
]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
echo $result;
?>
Result
{
"origin": "assigned_ip_address"
}