API Documentation

Account Information

Overview

The DomainTools API is organized into distinct products with queries that follow a RESTful URL structure wherever possible. Each product offers free, un-authenticated access for the sample URLs listed with each product. If you haven’t already, you may want to review the getting started document to learn about authentication and response formats.

The Account Information API provides a quick and easy way to get a snapshot of API product usage for an account. Usage is broken down by day and by month.

https://api.domaintools.com/v1/account/

Sample Response:

{
    "response": {
        "account": {
            "api_username":"domaintools-api-account",
            "active":true
        },
        "products":[
            {
                "id": "domain-profile",
                "per_month_limit": "100000",
                "per_minute_limit": "120",
                "absolute_limit": "1000",
                "usage": {
                    "today": 5,
                    "month": 152
                },
                "expiration_date": "2020-01-01"
            }
        }
    }
}

You must provide your API credentials to use this API.

General Information
Products