{"id":40525142,"url":"https://github.com/saintsweeto/hunterio","last_synced_at":"2026-01-20T21:32:15.833Z","repository":{"id":45321172,"uuid":"107386727","full_name":"saintsweeto/hunterio","owner":"saintsweeto","description":"A PHP wrapper for Hunter.io v2 API","archived":false,"fork":false,"pushed_at":"2021-12-21T15:15:00.000Z","size":9,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-29T00:27:41.539Z","etag":null,"topics":["hunter","hunterio","php-wrapper"],"latest_commit_sha":null,"homepage":"https://hunter.io","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/saintsweeto.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-10-18T09:28:20.000Z","updated_at":"2022-10-11T22:25:32.000Z","dependencies_parsed_at":"2022-07-19T03:02:07.313Z","dependency_job_id":null,"html_url":"https://github.com/saintsweeto/hunterio","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/saintsweeto/hunterio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saintsweeto%2Fhunterio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saintsweeto%2Fhunterio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saintsweeto%2Fhunterio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saintsweeto%2Fhunterio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saintsweeto","download_url":"https://codeload.github.com/saintsweeto/hunterio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saintsweeto%2Fhunterio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28614577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T18:56:40.769Z","status":"ssl_error","status_checked_at":"2026-01-20T18:54:26.653Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["hunter","hunterio","php-wrapper"],"created_at":"2026-01-20T21:32:15.771Z","updated_at":"2026-01-20T21:32:15.826Z","avatar_url":"https://github.com/saintsweeto.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hunter.io\nA PHP wrapper for Hunter v2 API.\n\n\n## Getting Started\n\n\n### Initialization\n```\nuse Hiraya\\Hunter;\n\n$hunter = new Hunter();\n```\n\n### API Calls\n\n#### Domain Search\n  \nThe Domain Search returns all the email addresses found using one given domain name, with sources.\n```\n$hunter-\u003esearchDomain('hirayasolutions.co.nz');\n```\nYou can add optional parameters by passing an array\n```\n$hunter-\u003esearchDomain('hirayasolutions.co.nz', ['limit' =\u003e 20, 'offset' =\u003e 1]);\n```\n\n#### Email Finder\n\nThis API Call guesses the most likely email of a person using his/her first name, last name and a domain name\n```\n$hunter-\u003efindEmail('hirayasolutions.co.nz', 'EJ', 'Ramos');\n```\n\n#### Email Verifier\n  \nThis API Call checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.\n```\n$hunter-\u003everifyEmail('info@hirayasolutions.co.nz');\n```\n\n#### Email Count\n  \nThis API Call allows you to know how many email addresses we have for one domain or for one company. It's free and doesn't require authentication.\n```\n$hunter-\u003ecountEmail('hirayasolutions.co.nz');\n```\n\n#### Account Information\n  \nThis API Call enables you to get information regarding your Hunter account at any time. This call is free.\n```\n$hunter-\u003edisplayAccount();\n```\n\n#### List all your leads\n  \nReturns all the leads already saved in your account. The leads are returned in sorted order, with the most recent leads appearing first.\n```\n$hunter-\u003elistLeads();\n```\n\n#### Get a lead\n\nRetrieves all the fields of a lead.\n```\n$hunter-\u003egetLead(100128);\n```\n\n#### Create a lead\n\nCreates a new lead. The parameters must be passed as a JSON hash.\n```\n$hunter-\u003ecreateLead([\n    'email' =\u003e 'info@hirayasolutions.co.nz',\n    'first_name' =\u003e 'EJ',\n    'last_name' =\u003e 'Ramos',\n    'company' =\u003e 'Hiraya Solutions',\n]);\n```\n\n#### Update a lead\n\nUpdates an existing lead. The updated values must be passed as a JSON hash.\n```\n$hunter-\u003eupdateLead(100128, [\n    'email' =\u003e 'info@hirayasolutions.co.nz',\n    'first_name' =\u003e 'EJ',\n    'last_name' =\u003e 'Ramos',\n    'company' =\u003e 'Hiraya Solutions',\n]);\n```\n\n#### Delete a lead\n\nDeletes an existing lead.\n```\n$hunter-\u003edeleteLead(100128);\n```\n\n## API Reference\nhttps://hunter.io/api/v2/docs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaintsweeto%2Fhunterio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaintsweeto%2Fhunterio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaintsweeto%2Fhunterio/lists"}