{"id":22025182,"url":"https://github.com/drexed/trumail","last_synced_at":"2025-10-07T07:48:37.401Z","repository":{"id":48743705,"uuid":"107457944","full_name":"drexed/trumail","owner":"drexed","description":"Trumail Ruby SDK.","archived":false,"fork":false,"pushed_at":"2024-08-01T23:29:26.000Z","size":48,"stargazers_count":9,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-06T23:51:41.505Z","etag":null,"topics":["email","ruby","trumail","verification"],"latest_commit_sha":null,"homepage":"https://drexed.github.io/trumail","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/drexed.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-18T20:13:54.000Z","updated_at":"2025-03-28T11:02:03.000Z","dependencies_parsed_at":"2025-05-07T09:46:54.642Z","dependency_job_id":null,"html_url":"https://github.com/drexed/trumail","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/drexed/trumail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drexed%2Ftrumail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drexed%2Ftrumail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drexed%2Ftrumail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drexed%2Ftrumail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drexed","download_url":"https://codeload.github.com/drexed/trumail/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drexed%2Ftrumail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278740817,"owners_count":26037480,"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-07T02:00:06.786Z","response_time":59,"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":["email","ruby","trumail","verification"],"created_at":"2024-11-30T07:14:51.950Z","updated_at":"2025-10-07T07:48:37.381Z","avatar_url":"https://github.com/drexed.png","language":"Ruby","readme":"# Trumail\n\n[![Gem Version](https://badge.fury.io/rb/trumail.svg)](http://badge.fury.io/rb/trumail)\n[![Build Status](https://travis-ci.org/drexed/trumail.svg?branch=master)](https://travis-ci.org/drexed/trumail)\n\nAPI wrapper for the free and open source [Trumail](https://trumail.io) email validation/verification system.\nYou can also self-host the system on your own server. Find out more here: [https://github.com/sdwolfe32/trumail](https://github.com/sdwolfe32/trumail)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'trumail'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install trumail\n\n## Usage\n\n### Lookup\n```ruby\n# Basic Lookup\nlookup = Trumail::Lookup.new('test@email.com').verify\nlookup = Trumail::Lookup.verify('test@email.com')\n\n# Custom Host\nlookup = Trumail::Lookup.verify(\n  'test@email.com',\n  host: 'https://verifier.com',\n  format: :xml\n)\n```\n\n### Response\n\n```ruby\nlookup.url            =\u003e 'https://api.trumail.io/v2/lookup/json?email=test@email.com'\nlookup.hash           =\u003e { 'address' =\u003e 'test@email.com', 'catchAll' =\u003e true, ... }\nlookup.success?       =\u003e true\nlookup.error?         =\u003e false\n\n# Data Methods\nlookup.address        =\u003e 'test@email.com'\nlookup.username       =\u003e 'test'\nlookup.domain         =\u003e 'email.com'\nlookup.md5_hash       =\u003e '0065537cb732045561c0d23e859710f4'\nlookup.suggestion     =\u003e nil\nlookup.catch_all?     =\u003e true\nlookup.deliverable?   =\u003e false\nlookup.disposable?    =\u003e true\nlookup.free?          =\u003e true\nlookup.full_inbox?    =\u003e false\nlookup.gravatar?      =\u003e true\nlookup.host_exists?   =\u003e false\nlookup.role?          =\u003e false\nlookup.valid_format?  =\u003e true\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/trumail. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the Trumail project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/trumail/blob/master/CODE_OF_CONDUCT.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrexed%2Ftrumail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrexed%2Ftrumail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrexed%2Ftrumail/lists"}