{"id":36971657,"url":"https://github.com/mgocobachi/domaintools","last_synced_at":"2026-01-13T21:54:30.268Z","repository":{"id":62527721,"uuid":"83201390","full_name":"mgocobachi/domaintools","owner":"mgocobachi","description":"A simple access to the DomainTools API","archived":false,"fork":false,"pushed_at":"2017-03-06T14:45:38.000Z","size":23,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-13T21:06:29.355Z","etag":null,"topics":["api","domain","domaintools","profile","reputation","security","tools","whois"],"latest_commit_sha":null,"homepage":null,"language":"PHP","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/mgocobachi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-26T10:45:44.000Z","updated_at":"2023-01-12T23:29:43.000Z","dependencies_parsed_at":"2022-11-02T14:16:43.576Z","dependency_job_id":null,"html_url":"https://github.com/mgocobachi/domaintools","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mgocobachi/domaintools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgocobachi%2Fdomaintools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgocobachi%2Fdomaintools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgocobachi%2Fdomaintools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgocobachi%2Fdomaintools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgocobachi","download_url":"https://codeload.github.com/mgocobachi/domaintools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgocobachi%2Fdomaintools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28401910,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["api","domain","domaintools","profile","reputation","security","tools","whois"],"created_at":"2026-01-13T21:54:27.705Z","updated_at":"2026-01-13T21:54:30.260Z","avatar_url":"https://github.com/mgocobachi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003ca href=\"https://travis-ci.org/mgocobachi/domaintools\"\u003e\u003cimg src=\"https://travis-ci.org/mgocobachi/domaintools.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/mgocobachi/domaintools\"\u003e\u003cimg src=\"https://poser.pugx.org/mgocobachi/domaintools/v/stable.svg\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/mgocobachi/domaintools\"\u003e\u003cimg src=\"https://poser.pugx.org/mgocobachi/domaintools/license.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# DomainTools API\n\nThe DomainTools API provides direct access to the same data that drives the powerful research tools on DomainTools.com.\n\n## What is DomainTools?\n\nDomainTools helps security analysts turn threat data into threat intelligence. We take indicators from your network, including domains and IPs, and connect them with nearly every active domain on the Internet. Those connections inform risk assessments, help profile attackers, guide online fraud investigations, and map cyber activity to attacker infrastructure.\n\n## Endpoints supported\n\n* [Domain Profile](http://www.domaintools.com/resources/api-documentation/domain-profile/)\n* [Domain Reputation](http://www.domaintools.com/resources/api-documentation/reputation/)\n* [Domain Search](http://www.domaintools.com/resources/api-documentation/domain-search/)\n\n## How to use\n\nTo use the package is defined a helper function called as 'domantools()', it\naccept two parameters, the username and the API key. However, if you leave it\nin blank you will hit the API as anonymous and limited calls.\n\n```\n\u003c?php\n$dt = domaintools('myusername', 'my_long_api_key');\n```\n\n## Examples\n\nIf you like to know the profile information of domaintools.com:\n```\n\u003c?php\n$profile = domaintools()-\u003eprofile('domaintools.com');\n```\n\nIf you like to know the reputation of domaintools.com (remember, more higher more risk).\n\n```\n\u003c?php\n$reputation = domaintools()-\u003ereputation('domaintools.com');\n```\n\nIf you like to know the results of any term search\n\nIn this example we are filtering by those domains active only, and when\nget the results then, search and filter where char_count is greater than 15.\n\n```\n\u003c?php\n$search = domaintools()-\u003esearch('domain tools', [\n  'active_only'   =\u003e 'true',\n]);\n\n$results = collection($search-\u003eresults)-\u003efilter(function ($result) {\n    return $result-\u003echar_count \u003e 15;\n});\n```\n\nOther example could be applying it immediately.\n```\n\u003c?php\n$results = collection(domaintools()-\u003esearch('domain tools', [\n  'active_only' =\u003e 'true',\n])-\u003eresults)-\u003efilter(function ($result) {\n    return $result-\u003echar_count \u003e 15;\n});\n```\n\n\n## More information\n\nFor more information please contact [domaintols.com](http://www.domaintools.com/company/contact/) about API details or documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgocobachi%2Fdomaintools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgocobachi%2Fdomaintools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgocobachi%2Fdomaintools/lists"}