{"id":28498623,"url":"https://github.com/spectrixdev/discord-phone-integration","last_synced_at":"2025-07-03T21:30:44.116Z","repository":{"id":44377748,"uuid":"150996726","full_name":"SpectrixDev/discord-phone-integration","owner":"SpectrixDev","description":"🤖A discord bot that can call your actual phone through Discord using IFTTT, Twilio, Vonage, Plivo, ClickSend, MessageBird, or Sinch","archived":false,"fork":false,"pushed_at":"2025-05-20T07:58:32.000Z","size":46,"stargazers_count":23,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-08T14:05:54.781Z","etag":null,"topics":["bot","discord","discord-api","discord-bot","discordapp","ifttt","phone","phone-bot","phonecall","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"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/SpectrixDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2018-09-30T18:57:46.000Z","updated_at":"2025-05-20T07:58:28.000Z","dependencies_parsed_at":"2025-05-20T08:43:33.297Z","dependency_job_id":null,"html_url":"https://github.com/SpectrixDev/discord-phone-integration","commit_stats":null,"previous_names":["spectrixdev/discord-phone-integration"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/SpectrixDev/discord-phone-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpectrixDev%2Fdiscord-phone-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpectrixDev%2Fdiscord-phone-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpectrixDev%2Fdiscord-phone-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpectrixDev%2Fdiscord-phone-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpectrixDev","download_url":"https://codeload.github.com/SpectrixDev/discord-phone-integration/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpectrixDev%2Fdiscord-phone-integration/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263406658,"owners_count":23461715,"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","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":["bot","discord","discord-api","discord-bot","discordapp","ifttt","phone","phone-bot","phonecall","python"],"created_at":"2025-06-08T14:05:52.960Z","updated_at":"2025-07-03T21:30:44.091Z","avatar_url":"https://github.com/SpectrixDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ☎ Discord Phone Call Bot\n\nA modular Discord bot that can make phone calls using a variety of providers, including IFTTT, Twilio, Vonage, Plivo, ClickSend, MessageBird, and Sinch. Easily configurable and extensible for new integrations.\n\n## Features\n\n- Make phone calls from Discord using multiple providers.\n- Modular design: each provider is a separate cog.\n- Easy configuration via `config.json`.\n- Cooldown and message length limits.\n- Python 3.6+ compatible.\n\n## Supported Providers \u0026 Commands\n\n| Provider     | Command           | Description                       |\n|--------------|-------------------|-----------------------------------|\n| IFTTT        | `!call`           | Calls via IFTTT VoIP applet       |\n| Twilio       | `!twilio_call`    | Calls using Twilio API            |\n| Vonage       | `!vonage_call`    | Calls using Vonage Voice API      |\n| Plivo        | `!plivo_call`     | Calls using Plivo Voice API       |\n| ClickSend    | `!clicksend_call` | Calls using ClickSend TTS         |\n| MessageBird  | `!messagebird_call` | Calls using MessageBird Voice   |\n| Sinch        | `!sinch_call`     | Calls using Sinch Voice API       |\n\n## Project Structure\n\n```\n.\n├── bot/\n│   ├── __init__.py\n│   ├── config.py\n│   ├── core.py\n│   └── cogs/\n│       ├── __init__.py\n│       ├── ifttt_call.py\n│       ├── twilio_call.py\n│       ├── vonage_call.py\n│       ├── plivo_call.py\n│       ├── clicksend_call.py\n│       ├── messagebird_call.py\n│       └── sinch_call.py\n├── config.json\n├── config.json.example\n├── requirements.txt\n├── main.py\n└── README.md\n```\n\n## Setup\n\n1. **Clone the repository and install dependencies:**\n    ```sh\n    pip install -r requirements.txt\n    ```\n\n2. **Configure your bot:**\n    - Copy `config.json.example` to `config.json`.\n    - Fill in the required fields for the providers you want to use.\n    - You must always set up your Discord bot token and a command prefix.\n\n3. **Provider Setup:**\n    - For each provider, follow their documentation to obtain API keys, tokens, and phone numbers.\n    - See comments in `config.json.example` for required fields.\n\n4. **Run the bot:**\n    ```sh\n    python main.py\n    ```\n\n## Example `config.json`\n\nSee `config.json.example` for all available options and documentation.\n\n## Adding New Integrations\n\n- Add a new cog in `bot/cogs/`.\n- Document new config fields in `config.json.example`.\n- Update this README with the new command.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspectrixdev%2Fdiscord-phone-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspectrixdev%2Fdiscord-phone-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspectrixdev%2Fdiscord-phone-integration/lists"}