{"id":19333557,"url":"https://github.com/ebkalderon/vonage-rs","last_synced_at":"2026-06-09T20:31:09.261Z","repository":{"id":81120315,"uuid":"294209367","full_name":"ebkalderon/vonage-rs","owner":"ebkalderon","description":"Vonage (formerly Nexmo) API bindings for Rust. Work in progress.","archived":false,"fork":false,"pushed_at":"2020-09-17T05:38:20.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-24T07:26:03.931Z","etag":null,"topics":["client","nexmo","rust","sms","text-message","two-factor-auth","voice","vonage"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ebkalderon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"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}},"created_at":"2020-09-09T19:27:03.000Z","updated_at":"2020-09-17T05:38:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"ab6daa52-eaa7-4b84-990c-7af23af3fecb","html_url":"https://github.com/ebkalderon/vonage-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ebkalderon/vonage-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebkalderon%2Fvonage-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebkalderon%2Fvonage-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebkalderon%2Fvonage-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebkalderon%2Fvonage-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ebkalderon","download_url":"https://codeload.github.com/ebkalderon/vonage-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebkalderon%2Fvonage-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34125332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":["client","nexmo","rust","sms","text-message","two-factor-auth","voice","vonage"],"created_at":"2024-11-10T02:53:29.876Z","updated_at":"2026-06-09T20:31:09.242Z","avatar_url":"https://github.com/ebkalderon.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vonage-rs\n\n[Vonage](https://www.vonage.com/communications-apis/) (formerly Nexmo) API\nbindings for Rust.\n\nThis library (`vonage-rs`) is intended to be an idiomatic Rust equivalent of\n[`vonage-node-sdk`]. It enables you to quickly add communications functionality\nto your application, including sending SMS messages, making voice calls,\ntext-to-speech, gathering phone number insights, two-factor authentication, and\nmore.\n\n[`vonage-node-sdk`]: https://github.com/Vonage/vonage-node-sdk\n\nTo use this library, a Vonage account is required. If you don't have an account,\nyou can always [sign up for free][sign-up].\n\n[sign-up]: https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL\u0026utm_medium=github\n\nSee [developer.nexmo.com](https://developer.nexmo.com/) for upstream\ndocumentation.\n\n## Example\n\n```rust\nuse std::error::Error;\nuse std::io::BufRead;\nuse std::time::Duration;\n\nuse vonage::verify::{Code, CodeLength};\nuse vonage::Client;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c(), Box\u003cdyn Error\u003e\u003e {\n    let client = Client::new(\"\u003capi_key\u003e\", \"\u003capi_secret\u003e\");\n    let mut pending = client\n        .verify(\"+1 555-555-555\".parse()?, \"vonage-rs\")?\n        .code_length(CodeLength::Six)\n        .pin_expiry(Duration::from_secs(5 * 60))\n        .send()\n        .await?;\n\n    let stdin = std::io::stdin();\n    let mut lines = stdin.lock().lines();\n\n    let matched = loop {\n        let code = lines.next().unwrap()?;\n        match pending.check(\u0026code).await? {\n            Code::Match(matched) =\u003e break matched,\n            Code::Mismatch(p) =\u003e pending = p,\n        }\n    };\n\n    println!(\"Code matches! {:?}\", matched);\n\n    Ok(())\n}\n```\n\n## Product support\n\nBelow are the non-beta products that `vonage-rs` aims to support, at minimum:\n\n- [ ] [SMS API](https://developer.nexmo.com/messaging/sms/overview) (sending SMS\n  messages)\n- [x] [Verify (2FA) API](https://developer.nexmo.com/verify/overview) (user\n  authentication)\n- [ ] [Voice API](https://developer.nexmo.com/voice/overview) (making voice\n  calls)\n\nBelow are the non-beta nice-to-have products that `vonage-rs` may support later:\n\n- [ ] [Account API](https://developer.nexmo.com/account/overview) (managing your\n  own Vonage account balance)\n- [ ] [Application API](https://developer.nexmo.com/application/overview)\n(managing your Vonage-connected applications)\n- [ ] [Number Insight API](https://developer.nexmo.com/number-insight/overview)\n  (retrieving phone number validity info)\n- [ ] [Video API](https://tokbox.com/developer/) (embeddable video and screen\n  sharing capabilities)\n\n## License\n\n`vonage-rs` is free and open source software distributed under the terms of\neither the [MIT](LICENSE-MIT) or the [Apache 2.0](LICENSE-APACHE) license, at\nyour option.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall be\ndual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febkalderon%2Fvonage-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Febkalderon%2Fvonage-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febkalderon%2Fvonage-rs/lists"}