{"id":32287396,"url":"https://github.com/luckycreationsindia/msg91","last_synced_at":"2026-02-21T07:03:13.203Z","repository":{"id":189396923,"uuid":"680615204","full_name":"luckycreationsindia/msg91","owner":"luckycreationsindia","description":"💬 msg91 - msg91.com Official API Wrapper (Unofficial Dart Package)","archived":false,"fork":false,"pushed_at":"2024-12-26T10:59:27.000Z","size":447,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-18T04:23:33.575Z","etag":null,"topics":["dart","flutter","msg91","sms","sms-api"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/msg91","language":"Dart","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/luckycreationsindia.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-19T20:17:46.000Z","updated_at":"2025-01-03T07:43:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"6722cf11-8eac-4f38-baaf-d3d0723172dd","html_url":"https://github.com/luckycreationsindia/msg91","commit_stats":null,"previous_names":["luckycreationsindia/msg91"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/luckycreationsindia/msg91","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckycreationsindia%2Fmsg91","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckycreationsindia%2Fmsg91/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckycreationsindia%2Fmsg91/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckycreationsindia%2Fmsg91/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luckycreationsindia","download_url":"https://codeload.github.com/luckycreationsindia/msg91/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luckycreationsindia%2Fmsg91/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29675925,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["dart","flutter","msg91","sms","sms-api"],"created_at":"2025-10-23T02:04:46.399Z","updated_at":"2026-02-21T07:03:13.196Z","avatar_url":"https://github.com/luckycreationsindia.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💬 msg91 - msg91.com Official API Wrapper (Unofficial Dart Package)\n\nAPI for [msg91](https://msg91.com) - Secure and robust APIs for SMS, Email, Voice, Authentication and more\n\n## Features\n\nThis package provides functionality to send sms via msg91 API with ease\n\n## Getting started\n\nJust install the package and check example for usage\n\n## Usage\n\u003chr\u003e\n\n### Send Message\n\n```dart\nimport 'package:msg91/msg91.dart';\n\nfinal msg91 = Msg91().initialize(authKey: \"AUTH_KEY\");\nfinal sms = msg91.getSMS();\nsms.send(\n    flowId: \"templateId\",\n    recipient: SmsRecipient(\n        mobile: \"mobile\",\n        key: {\"name\": \"John Doe\"},\n    ),\n    options: SmsOptions(\n        senderId: \"senderId\",\n        shortURL: false,\n    ),\n).then((value) {\n    print(\"Response: $value\");\n}).catchError((err) {\n    print(\"Err Response: $err\");\n});\n```\n\n### Get Account Balance\n\n```dart\nimport 'package:msg91/msg91.dart';\n\nfinal msg91 = Msg91().initialize(authKey: \"AUTH_KEY\");\nfinal account = msg91.getAccount();\n\naccount.checkBalance(\n    routeType: RouteType.wallet,\n).then((value) {\n    print(\"Wallet Balance: $value\");\n}).catchError((err) {\n    print(\"Err Response: $err\");\n});\n```\n\n## 📝 Feature List Roadmap\n\n| # | Feature               | Status |\n|---|-----------------------|--------|\n| 1 | Send SMS              | 🟢     |\n| 2 | Send OTP              | 🟢     |\n| 3 | Resend OTP            | 🟢     |\n| 4 | Verify OTP            | 🟢     |\n| 5 | Launch Campaign       | 🔴     |\n| 6 | Check Balance         | 🟢     |\n| 7 | Add SMS Template      | 🟢     |\n| 8 | Send WhatsApp Message | 🔴     |\n\n#### Much more features will be added as the project grows and it'll be really helpful if anyone can contribute to this package.\n\n\u003cbr/\u003e\n🔴 Pending\u003cbr/\u003e\n🟡 In Progress\u003cbr/\u003e\n🟢 Complete\u003cbr/\u003e\n\u003cbr/\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckycreationsindia%2Fmsg91","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluckycreationsindia%2Fmsg91","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckycreationsindia%2Fmsg91/lists"}