{"id":37781278,"url":"https://github.com/kaiiyer/emailrep","last_synced_at":"2026-01-16T15:07:01.425Z","repository":{"id":56063186,"uuid":"262023031","full_name":"kaiiyer/emailrep","owner":"kaiiyer","description":"This is a go library for interacting with the EmailRep service","archived":false,"fork":false,"pushed_at":"2020-11-27T16:42:19.000Z","size":13,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-06-20T00:32:30.950Z","etag":null,"topics":["api","email","emailrep","golang","json-api","security"],"latest_commit_sha":null,"homepage":"https://emailrep.io/","language":"Go","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/kaiiyer.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2020-05-07T10:44:24.000Z","updated_at":"2024-03-22T16:18:58.000Z","dependencies_parsed_at":"2022-08-15T12:30:48.274Z","dependency_job_id":null,"html_url":"https://github.com/kaiiyer/emailrep","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kaiiyer/emailrep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaiiyer%2Femailrep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaiiyer%2Femailrep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaiiyer%2Femailrep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaiiyer%2Femailrep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaiiyer","download_url":"https://codeload.github.com/kaiiyer/emailrep/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaiiyer%2Femailrep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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","email","emailrep","golang","json-api","security"],"created_at":"2026-01-16T15:07:00.588Z","updated_at":"2026-01-16T15:07:01.417Z","avatar_url":"https://github.com/kaiiyer.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EmailRep\n\nThis is a go library for interacting with the [EmailRep](https://emailrep.io) service.\n\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/kaiiyer/emailrep)](https://goreportcard.com/report/github.com/kaiiyer/emailrep)\n[![Documentation](https://godoc.org/github.com/kaiiyer/emailrep?status.svg)](http://godoc.org/github.com/kaiiyer/emailrep)\n\n**Rep** function will return the reputation of the email address passed as the argument \n\n### Install\n\n```bash\ngo get github.com/kaiiyer/emailrep\n```\n\n### Import\n\n```go\nimport (\n\t\"github.com/kaiiyer/emailrep\"\n)\n```\n\n## Example Usage\n\n```go\npackage main\n\nimport (\n\t\"github.com/kaiiyer/emailrep\"\n)\n\nfunc main() {\n\tvar r string\n\tr = emailrep.Rep(\"bill@microsoft.com\")\n\tprint(r)\n}\n```\n\nWith this example, the response would be:\n\n```json\n  {\n  \"email\": \"bill@microsoft.com\",\n  \"reputation\": \"high\",\n  \"suspicious\": false,\n  \"references\": 79,\n  \"details\": {\n    \"blacklisted\": false,\n    \"malicious_activity\": false,\n    \"malicious_activity_recent\": false,\n    \"credentials_leaked\": true,\n    \"credentials_leaked_recent\": false,\n    \"data_breach\": true,\n    \"first_seen\": \"07/01/2008\",\n    \"last_seen\": \"05/24/2019\",\n    \"domain_exists\": true,\n    \"domain_reputation\": \"high\",\n    \"new_domain\": false,\n    \"days_since_domain_creation\": 10341,\n    \"suspicious_tld\": false,\n    \"spam\": false,\n    \"free_provider\": false,\n    \"disposable\": false,\n    \"deliverable\": true,\n    \"accept_all\": true,\n    \"valid_mx\": true,\n    \"spoofable\": false,\n    \"spf_strict\": true,\n    \"dmarc_enforced\": true,\n    \"profiles\": [\n      \"myspace\",\n      \"spotify\",\n      \"twitter\",\n      \"pinterest\",\n      \"flickr\",\n      \"linkedin\",\n      \"vimeo\",\n      \"angellist\"\n    ]\n  }\n}\n```\n\n**emailrep** also accepts arguments of type `error` that implements the built in `error` interface and the response:\n\n```json\n{\n  \"message\": \"Sorry we got hit by an error!\"\n}\n```\n\nFull API docs can be found [here](https://docs.emailrep.io).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaiiyer%2Femailrep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaiiyer%2Femailrep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaiiyer%2Femailrep/lists"}