Subdomain Finder API
Subdomain Finder is a simple tool for finding all the available subdomains for a given domain. It returns a list of all the available subdomains for the given domain.
The Subdomain Finder API provides reliable and fast access to subdomain finder data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
To use Subdomain Finder, you need an API key. You can get one by creating a free account and visiting your dashboard.
GET Endpoint
https://api.apiverve.com/v1/subdomainfinderCode Examples
Here are examples of how to call the Subdomain Finder API in different programming languages:
curl -X GET \
"https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5', {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
response = requests.get('https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5', headers=headers)
data = response.json()
print(data)const https = require('https');
const url = require('url');
const options = {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
};
const req = https.request('https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5', options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => console.log(JSON.parse(data)));
});
req.end();<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: your_api_key_here',
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
?>package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5", nil)
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require 'net/http'
require 'json'
uri = URI('https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'
response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-API-Key", "your_api_key_here");
var response = await client.GetAsync("https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5");
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}Authentication
The Subdomain Finder API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test the Subdomain Finder API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the Subdomain Finder API:
Scan Subdomains
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
domain | string | required | The domain you want to find all the available subdomains for (e.g. google.com) Format: domain (e.g., google.com) | - | |
limitPremium | integer | optional | Limit the number of subdomains to detect Range: 1 - 500 |
Response
The Subdomain Finder API returns responses in JSON, XML, YAML, and CSV formats:
Example Responses
{
"status": "ok",
"error": null,
"data": {
"rootDomain": {
"domain": "paypal.com",
"records": [
"151.101.3.1",
"151.101.195.1",
"162.159.141.96"
]
},
"subDomains": [
{
"host": "api.paypal.com",
"records": [
"66.211.168.123"
]
},
{
"host": "mail.paypal.com",
"records": [
"159.127.187.12"
]
},
{
"host": "admin.paypal.com",
"records": [
"173.0.88.10"
]
},
{
"host": "smtp.paypal.com",
"records": [
"64.4.244.68"
]
},
{
"host": "ns2.paypal.com",
"records": [
"64.4.244.71"
]
},
{
"host": "test.paypal.com",
"records": [
"156.59.125.88"
]
},
{
"host": "ns1.paypal.com",
"records": [
"64.4.244.70"
]
},
{
"host": "mx.paypal.com",
"records": [
"10.190.3.55"
]
},
{
"host": "demo.paypal.com",
"records": [
"151.101.1.21",
"151.101.193.21",
"151.101.129.21",
"151.101.65.21"
]
},
{
"host": "shop.paypal.com",
"records": [
"54.148.26.111",
"35.80.170.143",
"54.212.145.128"
]
},
{
"host": "www.paypal.com",
"records": [
"151.101.193.21",
"151.101.65.21",
"151.101.129.21",
"151.101.1.21"
]
},
{
"host": "m.paypal.com",
"records": [
"151.101.129.21",
"151.101.1.21",
"151.101.193.21",
"151.101.65.21"
]
},
{
"host": "stage.paypal.com",
"records": [
"64.4.241.16"
]
},
{
"host": "ssl.paypal.com",
"records": [
"151.101.65.21",
"151.101.129.21",
"151.101.193.21",
"151.101.1.21"
]
},
{
"host": "i.paypal.com",
"records": [
"63.140.38.107",
"63.140.39.244",
"63.140.39.114",
"63.140.38.116",
"63.140.39.254",
"63.140.39.146",
"63.140.38.213",
"63.140.39.214",
"63.140.39.87",
"63.140.39.123"
]
},
{
"host": "news.paypal.com",
"records": [
"192.243.228.1"
]
},
{
"host": "autodiscover.paypal.com",
"records": [
"52.96.79.120",
"52.96.79.200",
"52.96.163.40",
"52.96.79.248"
]
},
{
"host": "dl.paypal.com",
"records": [
"216.113.188.115"
]
},
{
"host": "connect.paypal.com",
"records": [
"151.101.65.21",
"151.101.129.21",
"151.101.1.21",
"151.101.193.21"
]
},
{
"host": "sandbox.paypal.com",
"records": [
"151.101.195.1",
"162.159.141.96",
"151.101.3.1"
]
},
{
"host": "training.paypal.com",
"records": [
"64.4.254.252"
]
},
{
"host": "c.paypal.com",
"records": [
"151.101.129.21",
"151.101.65.21",
"151.101.193.21",
"151.101.1.21"
]
},
{
"host": "business.paypal.com",
"records": [
"104.18.6.168",
"104.18.7.168"
]
},
{
"host": "service.paypal.com",
"records": [
"192.243.228.1"
]
},
{
"host": "login.paypal.com",
"records": []
},
{
"host": "t.paypal.com",
"records": [
"151.101.3.1",
"151.101.131.1",
"151.101.67.1",
"151.101.195.1"
]
},
{
"host": "status.paypal.com",
"records": [
"20.69.68.249"
]
},
{
"host": "shopping.paypal.com",
"records": [
"208.76.140.165"
]
},
{
"host": "newsletter.paypal.com",
"records": [
"192.243.228.1"
]
},
{
"host": "reports.paypal.com",
"records": [
"173.0.93.28"
]
},
{
"host": "forms.paypal.com",
"records": [
"216.113.190.190"
]
},
{
"host": "labs.paypal.com",
"records": [
"173.0.88.135"
]
},
{
"host": "p.paypal.com",
"records": [
"151.101.131.1",
"151.101.67.1",
"151.101.195.1",
"151.101.3.1"
]
},
{
"host": "transfer.paypal.com",
"records": [
"151.101.193.21",
"151.101.129.21",
"151.101.65.21",
"151.101.1.21"
]
},
{
"host": "xmpp.paypal.com",
"records": [
"173.224.160.144",
"173.224.160.141",
"185.97.80.137",
"185.97.80.136"
]
},
{
"host": "manager.paypal.com",
"records": [
"173.0.93.191"
]
},
{
"host": "developer.paypal.com",
"records": [
"151.101.1.21",
"151.101.193.21",
"151.101.129.21",
"151.101.65.21"
]
},
{
"host": "account.paypal.com",
"records": [
"192.243.228.1"
]
},
{
"host": "history.paypal.com",
"records": [
"151.101.129.21",
"151.101.193.21",
"151.101.65.21",
"151.101.1.21"
]
},
{
"host": "pics.paypal.com",
"records": [
"151.101.131.1",
"151.101.195.1",
"151.101.67.1",
"151.101.3.1"
]
},
{
"host": "registration.paypal.com",
"records": [
"173.0.93.135"
]
},
{
"host": "mcp.paypal.com",
"records": [
"104.18.7.170",
"104.18.6.170"
]
},
{
"host": "accounts.paypal.com",
"records": [
"173.0.93.28"
]
},
{
"host": "hotspot.paypal.com",
"records": [
"64.4.240.12"
]
},
{
"host": "bm.paypal.com",
"records": [
"130.211.16.153"
]
},
{
"host": "rms.paypal.com",
"records": [
"173.0.82.166"
]
},
{
"host": "cb.paypal.com",
"records": [
"173.0.88.142"
]
}
],
"count": 47,
"totalFound": 47
}
}<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>ok</status>
<error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<data>
<rootDomain>
<domain>paypal.com</domain>
<records>
<record>151.101.3.1</record>
<record>151.101.195.1</record>
<record>162.159.141.96</record>
</records>
</rootDomain>
<subDomains>
<subDomain>
<host>api.paypal.com</host>
<records>
<record>66.211.168.123</record>
</records>
</subDomain>
<subDomain>
<host>mail.paypal.com</host>
<records>
<record>159.127.187.12</record>
</records>
</subDomain>
<subDomain>
<host>admin.paypal.com</host>
<records>
<record>173.0.88.10</record>
</records>
</subDomain>
<subDomain>
<host>smtp.paypal.com</host>
<records>
<record>64.4.244.68</record>
</records>
</subDomain>
<subDomain>
<host>ns2.paypal.com</host>
<records>
<record>64.4.244.71</record>
</records>
</subDomain>
<subDomain>
<host>test.paypal.com</host>
<records>
<record>156.59.125.88</record>
</records>
</subDomain>
<subDomain>
<host>ns1.paypal.com</host>
<records>
<record>64.4.244.70</record>
</records>
</subDomain>
<subDomain>
<host>mx.paypal.com</host>
<records>
<record>10.190.3.55</record>
</records>
</subDomain>
<subDomain>
<host>demo.paypal.com</host>
<records>
<record>151.101.1.21</record>
<record>151.101.193.21</record>
<record>151.101.129.21</record>
<record>151.101.65.21</record>
</records>
</subDomain>
<subDomain>
<host>shop.paypal.com</host>
<records>
<record>54.148.26.111</record>
<record>35.80.170.143</record>
<record>54.212.145.128</record>
</records>
</subDomain>
<subDomain>
<host>www.paypal.com</host>
<records>
<record>151.101.193.21</record>
<record>151.101.65.21</record>
<record>151.101.129.21</record>
<record>151.101.1.21</record>
</records>
</subDomain>
<subDomain>
<host>m.paypal.com</host>
<records>
<record>151.101.129.21</record>
<record>151.101.1.21</record>
<record>151.101.193.21</record>
<record>151.101.65.21</record>
</records>
</subDomain>
<subDomain>
<host>stage.paypal.com</host>
<records>
<record>64.4.241.16</record>
</records>
</subDomain>
<subDomain>
<host>ssl.paypal.com</host>
<records>
<record>151.101.65.21</record>
<record>151.101.129.21</record>
<record>151.101.193.21</record>
<record>151.101.1.21</record>
</records>
</subDomain>
<subDomain>
<host>i.paypal.com</host>
<records>
<record>63.140.38.107</record>
<record>63.140.39.244</record>
<record>63.140.39.114</record>
<record>63.140.38.116</record>
<record>63.140.39.254</record>
<record>63.140.39.146</record>
<record>63.140.38.213</record>
<record>63.140.39.214</record>
<record>63.140.39.87</record>
<record>63.140.39.123</record>
</records>
</subDomain>
<subDomain>
<host>news.paypal.com</host>
<records>
<record>192.243.228.1</record>
</records>
</subDomain>
<subDomain>
<host>autodiscover.paypal.com</host>
<records>
<record>52.96.79.120</record>
<record>52.96.79.200</record>
<record>52.96.163.40</record>
<record>52.96.79.248</record>
</records>
</subDomain>
<subDomain>
<host>dl.paypal.com</host>
<records>
<record>216.113.188.115</record>
</records>
</subDomain>
<subDomain>
<host>connect.paypal.com</host>
<records>
<record>151.101.65.21</record>
<record>151.101.129.21</record>
<record>151.101.1.21</record>
<record>151.101.193.21</record>
</records>
</subDomain>
<subDomain>
<host>sandbox.paypal.com</host>
<records>
<record>151.101.195.1</record>
<record>162.159.141.96</record>
<record>151.101.3.1</record>
</records>
</subDomain>
<subDomain>
<host>training.paypal.com</host>
<records>
<record>64.4.254.252</record>
</records>
</subDomain>
<subDomain>
<host>c.paypal.com</host>
<records>
<record>151.101.129.21</record>
<record>151.101.65.21</record>
<record>151.101.193.21</record>
<record>151.101.1.21</record>
</records>
</subDomain>
<subDomain>
<host>business.paypal.com</host>
<records>
<record>104.18.6.168</record>
<record>104.18.7.168</record>
</records>
</subDomain>
<subDomain>
<host>service.paypal.com</host>
<records>
<record>192.243.228.1</record>
</records>
</subDomain>
<subDomain>
<host>login.paypal.com</host>
<records>
</records>
</subDomain>
<subDomain>
<host>t.paypal.com</host>
<records>
<record>151.101.3.1</record>
<record>151.101.131.1</record>
<record>151.101.67.1</record>
<record>151.101.195.1</record>
</records>
</subDomain>
<subDomain>
<host>status.paypal.com</host>
<records>
<record>20.69.68.249</record>
</records>
</subDomain>
<subDomain>
<host>shopping.paypal.com</host>
<records>
<record>208.76.140.165</record>
</records>
</subDomain>
<subDomain>
<host>newsletter.paypal.com</host>
<records>
<record>192.243.228.1</record>
</records>
</subDomain>
<subDomain>
<host>reports.paypal.com</host>
<records>
<record>173.0.93.28</record>
</records>
</subDomain>
<subDomain>
<host>forms.paypal.com</host>
<records>
<record>216.113.190.190</record>
</records>
</subDomain>
<subDomain>
<host>labs.paypal.com</host>
<records>
<record>173.0.88.135</record>
</records>
</subDomain>
<subDomain>
<host>p.paypal.com</host>
<records>
<record>151.101.131.1</record>
<record>151.101.67.1</record>
<record>151.101.195.1</record>
<record>151.101.3.1</record>
</records>
</subDomain>
<subDomain>
<host>transfer.paypal.com</host>
<records>
<record>151.101.193.21</record>
<record>151.101.129.21</record>
<record>151.101.65.21</record>
<record>151.101.1.21</record>
</records>
</subDomain>
<subDomain>
<host>xmpp.paypal.com</host>
<records>
<record>173.224.160.144</record>
<record>173.224.160.141</record>
<record>185.97.80.137</record>
<record>185.97.80.136</record>
</records>
</subDomain>
<subDomain>
<host>manager.paypal.com</host>
<records>
<record>173.0.93.191</record>
</records>
</subDomain>
<subDomain>
<host>developer.paypal.com</host>
<records>
<record>151.101.1.21</record>
<record>151.101.193.21</record>
<record>151.101.129.21</record>
<record>151.101.65.21</record>
</records>
</subDomain>
<subDomain>
<host>account.paypal.com</host>
<records>
<record>192.243.228.1</record>
</records>
</subDomain>
<subDomain>
<host>history.paypal.com</host>
<records>
<record>151.101.129.21</record>
<record>151.101.193.21</record>
<record>151.101.65.21</record>
<record>151.101.1.21</record>
</records>
</subDomain>
<subDomain>
<host>pics.paypal.com</host>
<records>
<record>151.101.131.1</record>
<record>151.101.195.1</record>
<record>151.101.67.1</record>
<record>151.101.3.1</record>
</records>
</subDomain>
<subDomain>
<host>registration.paypal.com</host>
<records>
<record>173.0.93.135</record>
</records>
</subDomain>
<subDomain>
<host>mcp.paypal.com</host>
<records>
<record>104.18.7.170</record>
<record>104.18.6.170</record>
</records>
</subDomain>
<subDomain>
<host>accounts.paypal.com</host>
<records>
<record>173.0.93.28</record>
</records>
</subDomain>
<subDomain>
<host>hotspot.paypal.com</host>
<records>
<record>64.4.240.12</record>
</records>
</subDomain>
<subDomain>
<host>bm.paypal.com</host>
<records>
<record>130.211.16.153</record>
</records>
</subDomain>
<subDomain>
<host>rms.paypal.com</host>
<records>
<record>173.0.82.166</record>
</records>
</subDomain>
<subDomain>
<host>cb.paypal.com</host>
<records>
<record>173.0.88.142</record>
</records>
</subDomain>
</subDomains>
<count>47</count>
<totalFound>47</totalFound>
</data>
</response>
status: ok
error: null
data:
rootDomain:
domain: paypal.com
records:
- 151.101.3.1
- 151.101.195.1
- 162.159.141.96
subDomains:
- host: api.paypal.com
records:
- 66.211.168.123
- host: mail.paypal.com
records:
- 159.127.187.12
- host: admin.paypal.com
records:
- 173.0.88.10
- host: smtp.paypal.com
records:
- 64.4.244.68
- host: ns2.paypal.com
records:
- 64.4.244.71
- host: test.paypal.com
records:
- 156.59.125.88
- host: ns1.paypal.com
records:
- 64.4.244.70
- host: mx.paypal.com
records:
- 10.190.3.55
- host: demo.paypal.com
records:
- 151.101.1.21
- 151.101.193.21
- 151.101.129.21
- 151.101.65.21
- host: shop.paypal.com
records:
- 54.148.26.111
- 35.80.170.143
- 54.212.145.128
- host: www.paypal.com
records:
- 151.101.193.21
- 151.101.65.21
- 151.101.129.21
- 151.101.1.21
- host: m.paypal.com
records:
- 151.101.129.21
- 151.101.1.21
- 151.101.193.21
- 151.101.65.21
- host: stage.paypal.com
records:
- 64.4.241.16
- host: ssl.paypal.com
records:
- 151.101.65.21
- 151.101.129.21
- 151.101.193.21
- 151.101.1.21
- host: i.paypal.com
records:
- 63.140.38.107
- 63.140.39.244
- 63.140.39.114
- 63.140.38.116
- 63.140.39.254
- 63.140.39.146
- 63.140.38.213
- 63.140.39.214
- 63.140.39.87
- 63.140.39.123
- host: news.paypal.com
records:
- 192.243.228.1
- host: autodiscover.paypal.com
records:
- 52.96.79.120
- 52.96.79.200
- 52.96.163.40
- 52.96.79.248
- host: dl.paypal.com
records:
- 216.113.188.115
- host: connect.paypal.com
records:
- 151.101.65.21
- 151.101.129.21
- 151.101.1.21
- 151.101.193.21
- host: sandbox.paypal.com
records:
- 151.101.195.1
- 162.159.141.96
- 151.101.3.1
- host: training.paypal.com
records:
- 64.4.254.252
- host: c.paypal.com
records:
- 151.101.129.21
- 151.101.65.21
- 151.101.193.21
- 151.101.1.21
- host: business.paypal.com
records:
- 104.18.6.168
- 104.18.7.168
- host: service.paypal.com
records:
- 192.243.228.1
- host: login.paypal.com
records: []
- host: t.paypal.com
records:
- 151.101.3.1
- 151.101.131.1
- 151.101.67.1
- 151.101.195.1
- host: status.paypal.com
records:
- 20.69.68.249
- host: shopping.paypal.com
records:
- 208.76.140.165
- host: newsletter.paypal.com
records:
- 192.243.228.1
- host: reports.paypal.com
records:
- 173.0.93.28
- host: forms.paypal.com
records:
- 216.113.190.190
- host: labs.paypal.com
records:
- 173.0.88.135
- host: p.paypal.com
records:
- 151.101.131.1
- 151.101.67.1
- 151.101.195.1
- 151.101.3.1
- host: transfer.paypal.com
records:
- 151.101.193.21
- 151.101.129.21
- 151.101.65.21
- 151.101.1.21
- host: xmpp.paypal.com
records:
- 173.224.160.144
- 173.224.160.141
- 185.97.80.137
- 185.97.80.136
- host: manager.paypal.com
records:
- 173.0.93.191
- host: developer.paypal.com
records:
- 151.101.1.21
- 151.101.193.21
- 151.101.129.21
- 151.101.65.21
- host: account.paypal.com
records:
- 192.243.228.1
- host: history.paypal.com
records:
- 151.101.129.21
- 151.101.193.21
- 151.101.65.21
- 151.101.1.21
- host: pics.paypal.com
records:
- 151.101.131.1
- 151.101.195.1
- 151.101.67.1
- 151.101.3.1
- host: registration.paypal.com
records:
- 173.0.93.135
- host: mcp.paypal.com
records:
- 104.18.7.170
- 104.18.6.170
- host: accounts.paypal.com
records:
- 173.0.93.28
- host: hotspot.paypal.com
records:
- 64.4.240.12
- host: bm.paypal.com
records:
- 130.211.16.153
- host: rms.paypal.com
records:
- 173.0.82.166
- host: cb.paypal.com
records:
- 173.0.88.142
count: 47
totalFound: 47
| key | value |
|---|---|
| rootDomain | {domain:paypal.com,records:[151.101.3.1,151.101.195.1,162.159.141.96]} |
| subDomains | [{host:api.paypal.com,records:[66.211.168.123]},{host:mail.paypal.com,records:[159.127.187.12]},{host:admin.paypal.com,records:[173.0.88.10]},{host:smtp.paypal.com,records:[64.4.244.68]},{host:ns2.paypal.com,records:[64.4.244.71]},{host:test.paypal.com,records:[156.59.125.88]},{host:ns1.paypal.com,records:[64.4.244.70]},{host:mx.paypal.com,records:[10.190.3.55]},{host:demo.paypal.com,records:[151.101.1.21,151.101.193.21,151.101.129.21,151.101.65.21]},{host:shop.paypal.com,records:[54.148.26.111,35.80.170.143,54.212.145.128]},{host:www.paypal.com,records:[151.101.193.21,151.101.65.21,151.101.129.21,151.101.1.21]},{host:m.paypal.com,records:[151.101.129.21,151.101.1.21,151.101.193.21,151.101.65.21]},{host:stage.paypal.com,records:[64.4.241.16]},{host:ssl.paypal.com,records:[151.101.65.21,151.101.129.21,151.101.193.21,151.101.1.21]},{host:i.paypal.com,records:[63.140.38.107,63.140.39.244,63.140.39.114,63.140.38.116,63.140.39.254,63.140.39.146,63.140.38.213,63.140.39.214,63.140.39.87,63.140.39.123]},{host:news.paypal.com,records:[192.243.228.1]},{host:autodiscover.paypal.com,records:[52.96.79.120,52.96.79.200,52.96.163.40,52.96.79.248]},{host:dl.paypal.com,records:[216.113.188.115]},{host:connect.paypal.com,records:[151.101.65.21,151.101.129.21,151.101.1.21,151.101.193.21]},{host:sandbox.paypal.com,records:[151.101.195.1,162.159.141.96,151.101.3.1]},{host:training.paypal.com,records:[64.4.254.252]},{host:c.paypal.com,records:[151.101.129.21,151.101.65.21,151.101.193.21,151.101.1.21]},{host:business.paypal.com,records:[104.18.6.168,104.18.7.168]},{host:service.paypal.com,records:[192.243.228.1]},{host:login.paypal.com,records:[]},{host:t.paypal.com,records:[151.101.3.1,151.101.131.1,151.101.67.1,151.101.195.1]},{host:status.paypal.com,records:[20.69.68.249]},{host:shopping.paypal.com,records:[208.76.140.165]},{host:newsletter.paypal.com,records:[192.243.228.1]},{host:reports.paypal.com,records:[173.0.93.28]},{host:forms.paypal.com,records:[216.113.190.190]},{host:labs.paypal.com,records:[173.0.88.135]},{host:p.paypal.com,records:[151.101.131.1,151.101.67.1,151.101.195.1,151.101.3.1]},{host:transfer.paypal.com,records:[151.101.193.21,151.101.129.21,151.101.65.21,151.101.1.21]},{host:xmpp.paypal.com,records:[173.224.160.144,173.224.160.141,185.97.80.137,185.97.80.136]},{host:manager.paypal.com,records:[173.0.93.191]},{host:developer.paypal.com,records:[151.101.1.21,151.101.193.21,151.101.129.21,151.101.65.21]},{host:account.paypal.com,records:[192.243.228.1]},{host:history.paypal.com,records:[151.101.129.21,151.101.193.21,151.101.65.21,151.101.1.21]},{host:pics.paypal.com,records:[151.101.131.1,151.101.195.1,151.101.67.1,151.101.3.1]},{host:registration.paypal.com,records:[173.0.93.135]},{host:mcp.paypal.com,records:[104.18.7.170,104.18.6.170]},{host:accounts.paypal.com,records:[173.0.93.28]},{host:hotspot.paypal.com,records:[64.4.240.12]},{host:bm.paypal.com,records:[130.211.16.153]},{host:rms.paypal.com,records:[173.0.82.166]},{host:cb.paypal.com,records:[173.0.88.142]}] |
| count | 47 |
| totalFound | 47 |
Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
error | string | null | Contains error message if status is "error", otherwise null | null |
data | object | null | Contains the API response data if successful, otherwise null | {...} |
Learn more about response formats →
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value |
|---|---|---|
rootDomain | object | |
â”” domain | string | |
â”” records | array | |
| [ ] Array items: | array[47] | |
â”” host | string | |
â”” records | array | |
count | number | |
totalFound | number |
Headers
Required and optional headers for Subdomain Finder API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
X-API-Key | required | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
Accept | optional | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
User-Agent | optional | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
X-Request-ID | optional | req_123456789 | Custom request identifier for tracking and debugging requests |
Cache-Control | optional | no-cache | Control caching behavior for the request and response |
GraphQL AccessALPHA
Access Subdomain Finder through GraphQL to combine it with other API calls in a single request. Query only the subdomain finder data you need with precise field selection, and orchestrate complex data fetching workflows.
Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.
POST https://api.apiverve.com/v1/graphqlquery {
subdomainfinder(
input: {
domain: "google.com"
limit: 5
}
) {
rootDomain {
domain
records
}
subDomains
count
totalFound
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
CORS Support
The Subdomain Finder API supports Cross-Origin Resource Sharing (CORS) with wildcard configuration, allowing you to call Subdomain Finder directly from browser-based applications without proxy servers.
| CORS Header | Value | Description |
|---|---|---|
Access-Control-Allow-Origin | * | Accepts requests from any origin |
Access-Control-Allow-Methods | * | Accepts any HTTP method |
Access-Control-Allow-Headers | * | Accepts any request headers |
Browser Usage: You can call Subdomain Finder directly from JavaScript running in the browser without encountering CORS errors. No proxy server or additional configuration needed.
Rate Limiting
Subdomain Finder API requests are subject to rate limiting based on your subscription plan. These limits ensure fair usage and maintain service quality for all Subdomain Finder users.
| Plan | Rate Limit | Description |
|---|---|---|
| Free | 5 requests/min | Hard rate limit enforced - exceeding will return 429 errors |
| Starter | No Limit | Production ready - standard traffic priority |
| Pro | No Limit | Production ready - preferred traffic priority |
| Mega | No Limit | Production ready - highest traffic priority |
Learn more about rate limiting →
Rate Limit Headers
When rate limits apply, each Subdomain Finder response includes headers to help you track your usage:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum number of requests allowed per time window |
X-RateLimit-Remaining | Number of requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the rate limit window resets |
Handling Rate Limits
Free Plan: When you exceed your rate limit, Subdomain Finder returns a 429 Too Many Requests status code. Your application should implement appropriate backoff logic to handle this gracefully.
Paid Plans: No rate limiting or throttling applied. All paid plans (Starter, Pro, Mega) are production-ready.
Best Practices for Subdomain Finder:
- Monitor the rate limit headers to track your Subdomain Finder usage (Free plan only)
- Cache subdomain finder responses where appropriate to reduce API calls
- Upgrade to Pro or Mega for guaranteed no-throttle Subdomain Finder performance
Note: Subdomain Finder rate limits are separate from credit consumption. You may have credits remaining but still hit rate limits when using Subdomain Finder on Free tier.
Error Codes
The Subdomain Finder API uses standard HTTP status codes to indicate success or failure:
| Code | Message | Description | Solution |
|---|---|---|---|
200 | OK | Request successful, data returned | No action needed - request was successful |
400 | Bad Request | Invalid request parameters or malformed request | Check required parameters and ensure values match expected formats |
401 | Unauthorized | Missing or invalid API key | Include x-api-key header with valid API key from dashboard |
403 | Forbidden | API key lacks permission or insufficient credits | Check credit balance in dashboard or upgrade plan |
429 | Too Many Requests | Rate limit exceeded (Free: 5 req/min) | Implement request throttling or upgrade to paid plan |
500 | Internal Server Error | Server error occurred | Retry request after a few seconds, contact support if persists |
503 | Service Unavailable | API temporarily unavailable | Wait and retry, check status page for maintenance updates |
Learn more about error handling →
Need help? Contact support with your X-Request-ID for assistance.
Integrate Subdomain Finder with SDKs
Get started quickly with official Subdomain Finder SDKs for your preferred language. Each library handles authentication, request formatting, and error handling automatically.
Available for Node.js, Python, C#/.NET, and Android/Java. All SDKs are open source and regularly updated.
Integrate Subdomain Finder with No-Code API Tools
Connect the Subdomain Finder API to your favorite automation platform without writing code. Build workflows that leverage subdomain finder data across thousands of apps.





All platforms use your same API key to access Subdomain Finder. Visit our integrations hub for step-by-step setup guides.
Frequently Asked Questions
How do I get an API key for Subdomain Finder?
How many credits does Subdomain Finder cost?
Each successful Subdomain Finder API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful subdomain finder lookups.
Can I use Subdomain Finder in production?
The free plan is for testing and development only. For production use of Subdomain Finder, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.
Can I use Subdomain Finder from a browser?
What happens if I exceed my Subdomain Finder credit limit?
When you reach your monthly credit limit, Subdomain Finder API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.



