{"id":21740885,"url":"https://github.com/whois-api-llc/reverse-whois-py","last_synced_at":"2026-04-19T07:33:51.709Z","repository":{"id":57461718,"uuid":"371032222","full_name":"whois-api-llc/reverse-whois-py","owner":"whois-api-llc","description":"Reverse Whois API client library for Python","archived":false,"fork":false,"pushed_at":"2021-05-26T12:58:38.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-29T11:18:26.778Z","etag":null,"topics":["python","reverse-whois","whois","whois-lookup","whoisxmlapi"],"latest_commit_sha":null,"homepage":"https://reverse-whois.whoisxmlapi.com/api","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/whois-api-llc.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-26T12:50:22.000Z","updated_at":"2022-02-07T09:49:18.000Z","dependencies_parsed_at":"2022-08-28T01:51:14.962Z","dependency_job_id":null,"html_url":"https://github.com/whois-api-llc/reverse-whois-py","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/whois-api-llc/reverse-whois-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Freverse-whois-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Freverse-whois-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Freverse-whois-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Freverse-whois-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whois-api-llc","download_url":"https://codeload.github.com/whois-api-llc/reverse-whois-py/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Freverse-whois-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005030,"owners_count":26083827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","reverse-whois","whois","whois-lookup","whoisxmlapi"],"created_at":"2024-11-26T06:15:46.816Z","updated_at":"2025-10-10T19:35:43.084Z","avatar_url":"https://github.com/whois-api-llc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://img.shields.io/badge/License-MIT-green.svg\n    :alt: reverse-whois-py license\n    :target: https://opensource.org/licenses/MIT\n\n.. image:: https://img.shields.io/pypi/v/reverse-whois.svg\n    :alt: reverse-whois-py release\n    :target: https://pypi.org/project/reverse-whois\n\n.. image:: https://github.com/whois-api-llc/reverse-whois-py/workflows/Build/badge.svg\n    :alt: reverse-whois-py build\n    :target: https://github.com/whois-api-llc/reverse-whois-py/actions\n\n========\nOverview\n========\n\nThe client library for\n`Reverse Whois API \u003chttps://reverse-whois.whoisxmlapi.com/\u003e`_\nin Python language.\n\nThe minimum Python version is 3.6.\n\nInstallation\n============\n\n.. code-block:: shell\n\n    pip install reverse-whois\n\nExamples\n========\n\nFull API documentation available `here \u003chttps://reverse-whois.whoisxmlapi.com/api/documentation/making-requests\u003e`_\n\nCreate a new client\n-------------------\n\n.. code-block:: python\n\n    from reversewhois import *\n\n    client = Client('Your API key')\n\nMake basic requests\n-------------------\n\n.. code-block:: python\n\n    # Get the number of domains.\n    terms = {\n        'include': ['blog']\n    }\n    result = client.preview(basic_terms=terms)\n    print(result.domains_count)\n\n    # Get raw API response\n    raw_result = client.raw_data(\n        basic_terms=terms,\n        response_format=Client.XML_FORMAT,\n        mode=Client.PREVIEW_MODE)\n\n    # Get list of registered/dropped domains (up to 10,000)\n    result = client.purchase(\n        basic_terms=terms\n    )\n\nAdvanced usage\n-------------------\n\nExtra request parameters\n\n.. code-block:: python\n\n    advanced_terms = [{\n        'field': Fields.domain_name,\n        'term': \"whoisxmlapi.*\"\n    }]\n    updated_date = datetime.date(2020, 1, 1)\n    result = client.purchase(\n        advanced_terms=advanced_terms,\n        updated_date_from=updated_date,\n        include_audit_dates=True,\n        punycode=False)\n\n    #Next page\n    response = client.purchase(\n        basic_terms=terms\n    )\n    if response.has_next():\n        next_page = client.next_page(\n            current_page=response,\n            basic_terms=terms\n        )\n\n    #Iterating\n    for page in client.iterate_pages(basic_terms=terms):\n        print(page)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhois-api-llc%2Freverse-whois-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhois-api-llc%2Freverse-whois-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhois-api-llc%2Freverse-whois-py/lists"}