HELP CENTER

Do you offer Whois records? How can I find a good expired domain?

Many people buy expired domains to put their business at the forefront of SERPs much easier compared to spending tons of time and effort building up page authority and domain rating afresh. Others get expired domains as investments and resell them later. Either way, these people need proper tools to find the right and most valuable expired domains.

Using Domain Analytics API – Whois Overview, you can build such a tool yourself.

Answering the question from the title — yes, we offer Whois records. We can provide you access to our domain database with Whois and search visibility data for over 60 million domains.

To find a good expired domain, all you have to do is call the Whois Overview endpoint with the right parameters.

POST https://api.dataforseo.com/v3/domain_analytics/whois/overview/live

This endpoint will provide you with Whois data enriched with ranking and traffic info from organic and paid SERPs for the domains matching the parameters you specify in the request.

1 First off, specify the number of returned domains by adding the limit field to the Task POST body. The default value is 100, the maximum value is 1000.

2 After that, apply filters to find the most valuable and relevant domains. You can define up to 8 filtering parameters in one request. For example, you can filter domains by:

  • Expiration date, e.g. “expiration_datetime”, “>”, “2021-03-15 01:00:00 +00:00”
  • Domain age, e.g. “created_datetime”, “<“, “2019-03-15 01:00:00 +00:00”
  • Domain level, e.g. “tld”, “=”, “com”
  • Keyword the domain names should contain, e.g. “domain”, “like”, “%seo%”
  • Number of organic SERPs the domain ranks in, e.g. “metrics.organic.count”, “>”, “200”

 
However, the list of filtering rules is not limited to the parameters above. You can use virtually any metric from the returned dataset as a filtering parameter and get the most valuable domains fast and easily.

3 Apply results sorting rules in the order_by field. You can sort results in either ascending or descending order (asc or desc respectively). You can use the same values as in the filters array to sort the results.

Note that you can set no more than three sorting rules in a single request.

For example, suppose you need to get the domains with the closest expiration date first, and you also want these domains to have the biggest volumes of organic traffic and the highest rankings. In that case, your sorting rule should be specified as in the following example:

“order_by”: ["expiration_datetime,asc","metrics.organic.etv,desc","metrics.organic.pos_1,desc"]

Your POST request should be structured as in the example below:

[
    {
        "limit": 10,
        "filters": [
            [
                "expiration_datetime",
                "<",
                "2022-02-15 01:00:00 +00:00"
            ],
            "and",
            [
                "domain",
                "like",
                "%seo%"
            ],
            "and",
            [
                "metrics.organic.pos_1",
                ">",
                "200"
            ]
        ],
        "order_by": [
            "expiration_datetime,asc","metrics.organic.etv,desc","metrics.organic.pos_1,desc"
        ]
    }
]

Example of the API response:

{
    "version": "0.1.20220216",
    "status_code": 20000,
    "status_message": "Ok.",
    "time": "0.7025 sec.",
    "cost": 0.101,
    "tasks_count": 1,
    "tasks_error": 0,
    "tasks": [
        {
            "id": "03211235-2806-0405-0000-5401b38849f7",
            "status_code": 20000,
            "status_message": "Ok.",
            "time": "0.6525 sec.",
            "cost": 0.101,
            "result_count": 1,
            "path": [
                "v3",
                "domain_analytics",
                "whois",
                "overview",
                "live"
            ],
            "data": {
                "api": "domain_analytics",
                "function": "overview",
                "limit": 10,
                "filters": [
                    [
                        "expiration_datetime",
                        "<",
                        "2022-02-15 01:00:00 +00:00"
                    ],
                    "and",
                    [
                        "domain",
                        "like",
                        "%seo%"
                    ],
                    "and",
                    [
                        "metrics.organic.pos_1",
                        ">",
                        "200"
                    ]
                ],
                "order_by": [
                    "expiration_datetime,asc",
                    "metrics.organic.etv,desc",
                    "metrics.organic.pos_1,desc"
                ]
            },
            "result": [
                
                    "total_count": 1,
                    "items_count": 1,
                    "items": [
                        {
                            "domain": "houseofknives.ca",
                            "created_datetime": "2000-09-22 15:11:25 +00:00",
                            "changed_datetime": "2019-10-09 22:24:55 +00:00",
                            "expiration_datetime": "2022-01-31 05:00:00 +00:00",
                            "updated_datetime": "2022-01-29 18:16:34 +00:00",
                            "first_seen": "2020-10-07 00:00:00 +00:00",
                            "epp_status_codes": [
                                "client_transfer_prohibited",
                                "client_update_prohibited"
                            ],
                            "tld": "ca",
                            "registered": true,
                            "metrics": {
                                "organic": {
                                    "pos_1": 404,
                                    "pos_2_3": 1041,
                                    "pos_4_10": 3081,
                                    "pos_11_20": 5382,
                                    "pos_21_30": 4621,
                                    "pos_31_40": 4287,
                                    "pos_41_50": 3892,
                                    "pos_51_60": 3230,
                                    "pos_61_70": 2684,
                                    "pos_71_80": 2114,
                                    "pos_81_90": 1622,
                                    "pos_91_100": 860,
                                    "etv": 205557.68776105158,
                                    "impressions_etv": 67582.45631187502,
                                    "count": 33218,
                                    "estimated_paid_traffic_cost": 186494.93439278495
                                },
                                "paid": {
                                    "pos_1": 0,
                                    "pos_2_3": 0,
                                    "pos_4_10": 0,
                                    "pos_11_20": 0,
                                    "pos_21_30": 0,
                                    "pos_31_40": 0,
                                    "pos_41_50": 0,
                                    "pos_51_60": 0,
                                    "pos_61_70": 0,
                                    "pos_71_80": 0,
                                    "pos_81_90": 0,
                                    "pos_91_100": 0,
                                    "etv": 0,
                                    "impressions_etv": 0,
                                    "count": 0,
                                    "estimated_paid_traffic_cost": 0
                                }
                            }
                        }
                    ]
                }
            ]
        }
    ]
}

Consider reading this blog post as it describes important factors to consider when choosing an expired domain and can help you find an appropriate solution for your specific needs.

Embed DataForSeo widget on your website


Embed code:
Preview: