Subdomain FinderSubdomain Finder API

OnlineCredit Usage:500 per callLive Data
avg: 4246ms|p50: 3736ms|p75: 4586ms|p90: 5605ms|p99: 7643ms

Overview

To use Subdomain Finder, you need an API key. You can get one by creating a free account and visiting your dashboard.

GET Endpoint

URL
https://api.apiverve.com/v1/subdomainfinder

Example

How to call the Subdomain Finder API in different programming languages.

cURL Request
curl -X GET \
  "https://api.apiverve.com/v1/subdomainfinder?domain=google.com&limit=5" \
  -H "X-API-Key: your_api_key_here"
JavaScript (Fetch API)
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);
Python (Requests)
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)
Go (net/http)
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))
}
Example 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
  }
}

Authentication

The Subdomain Finder API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Learn more about authentication →

Interactive 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:

Some Subdomain Finder parameters marked with Premium are available exclusively on paid plans.View pricing

Scan Subdomains

ParameterTypeRequiredDescriptionDefaultExample
domainstringrequired
The domain you want to find all the available subdomains for (e.g. google.com)
Format: domain (e.g., google.com)
-google.com
limitPremiumintegeroptional
Limit the number of subdomains to detect
Range: 1 - 500
105

Response

The Subdomain Finder API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.

Other Response Formats

XML Response
200 OK
<?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>
YAML Response
200 OK
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
CSV Response
200 OK
keyvalue
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]}]
count47
totalFound47

Response Structure

All API responses follow a consistent structure with the following fields:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains 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:

FieldTypeSample ValueDescription
rootDomainobject{...}
-
â”” domainstring"paypal.com"
The primary domain name for the scan
â”” recordsarray["151.101.3.1", ...]
IP addresses associated with the root domain
[ ] Array items:array[47]Array of objects
List of discovered subdomains with their DNS records
â”” hoststring"api.paypal.com"
-
â”” recordsarray["66.211.168.123"]
-
countnumber47
Total number of subdomains discovered in this scan
totalFoundnumber47
Total number of subdomains found for the domain

Headers

Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →

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.

Test Subdomain Finder in the GraphQL Explorer to confirm availability and experiment with queries.

Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.

GraphQL Endpoint
POST https://api.apiverve.com/v1/graphql
GraphQL Query Example
query {
  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 accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →

Rate Limiting

Subdomain Finder requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →

Error Codes

The Subdomain Finder API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →

SDKs for Subdomain Finder

Official Subdomain Finder packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →

No-Code Integrations

Subdomain Finder works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →

Frequently Asked Questions

How do I get an API key for Subdomain Finder?
Sign up for a free account at dashboard.apiverve.com. Your API key will be automatically generated and available in your dashboard. The same key works for Subdomain Finder and all other APIVerve APIs. The free plan includes 1,000 credits plus a 500 credit bonus.
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?
Yes! The Subdomain Finder API supports CORS with wildcard configuration, so you can call it directly from browser-based JavaScript without needing a proxy server. See the CORS section above for details.
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.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?