{"id":50299310,"url":"https://github.com/splashifypro/sdk-node","last_synced_at":"2026-05-28T11:04:19.498Z","repository":{"id":355366264,"uuid":"1227811913","full_name":"splashifypro/sdk-node","owner":"splashifypro","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-26T07:03:06.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T09:09:14.666Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/splashifypro.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-03T07:38:02.000Z","updated_at":"2026-05-26T07:03:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/splashifypro/sdk-node","commit_stats":null,"previous_names":["splashifypro/sdk-node"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/splashifypro/sdk-node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splashifypro%2Fsdk-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splashifypro%2Fsdk-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splashifypro%2Fsdk-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splashifypro%2Fsdk-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/splashifypro","download_url":"https://codeload.github.com/splashifypro/sdk-node/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splashifypro%2Fsdk-node/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33605450,"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-05-28T02:00:06.440Z","response_time":99,"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":[],"created_at":"2026-05-28T11:04:18.664Z","updated_at":"2026-05-28T11:04:19.493Z","avatar_url":"https://github.com/splashifypro.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Splashify Pro — Node.js / TypeScript SDK\n\n[![npm](https://img.shields.io/badge/npm-%40splashifypro%2Fsdk-cb3837?logo=npm)](https://www.npmjs.com/package/@splashifypro/sdk)\n[![docs](https://img.shields.io/badge/docs-splashifypro.com-1B70FF)](https://docs.splashifypro.com/public-api)\n[![license](https://img.shields.io/badge/license-MIT-22c55e)](./LICENSE)\n\nOfficial TypeScript SDK for the [Splashify Pro](https://splashifypro.com) API —\nsend WhatsApp messages, transactional emails, manage contacts and\nconversations, and fire Meta Conversions events from your Node.js / TypeScript\nbackend.\n\n## Install\n\n```bash\nnpm install @splashifypro/sdk\n# or\npnpm add @splashifypro/sdk\n# or\nyarn add @splashifypro/sdk\n```\n\n## Get your API key\n\n1. **Sign in** to your Splashify Pro account at\n   [app.splashifypro.com](https://app.splashifypro.com).\n   No account yet? [Sign up free](https://app.splashifypro.com/auth/signup).\n\n2. Open the **Settings** dialog (gear icon, top right) → click the\n   **Developer** tile.\n   _Direct link:_ [app.splashifypro.com/settings/developer](https://app.splashifypro.com/settings/developer)\n\n3. Under **API Keys**, click **Generate Secret Key**.\n\n4. Copy the key shown (starts with `sk_live_…`) and store it somewhere\n   secure — it's shown **only once**. If you lose it, generate a new one\n   and the old one stops working.\n\n5. Use it as the `SPLASHIFY_API_KEY` environment variable in your app.\n   **Never commit it to git or paste it into client-side code** — the\n   key carries full account access.\n\n\u003e **Tip:** Set up a [webhook URL](https://app.splashifypro.com/settings/developer)\n\u003e on the same page to receive delivery / read receipts and inbound message\n\u003e events.\n\n## Authentication\n\nThe SDK uses HTTP Basic with the API key as the username:\n\n```ts\nimport { Configuration, MessagesApi } from \"@splashifypro/sdk\";\n\nconst config = new Configuration({\n  username: process.env.SPLASHIFY_API_KEY!,\n});\n\nconst messages = new MessagesApi(config);\n```\n\n## Quickstart — send a WhatsApp text\n\n```ts\nimport { Configuration, MessagesApi } from \"@splashifypro/sdk\";\n\nconst messages = new MessagesApi(\n  new Configuration({ username: process.env.SPLASHIFY_API_KEY! })\n);\n\nconst result = await messages.publicMessagePost({\n  body: {\n    type: \"Text\",\n    countryCode: \"+91\",\n    phoneNumber: \"9999999999\",\n    data: { message: \"Hi! Thanks for reaching out 👋\" },\n  },\n});\n\nconsole.log(result.id); // message_id — use to poll status / correlate webhooks\n```\n\n## Send a WhatsApp template\n\n```ts\nawait messages.publicMessagePost({\n  body: {\n    type: \"Template\",\n    countryCode: \"+91\",\n    phoneNumber: \"9999999999\",\n    template: {\n      name: \"order_confirmation\",\n      languageCode: \"en\",\n      bodyValues: [\"Sayan\", \"ORD-1042\", \"₹1,499\"],\n      buttonValues: { \"0\": [\"https://shop.example.com/orders/1042\"] },\n    },\n  },\n});\n```\n\n## Send a transactional email\n\n\u003e Requires a verified sender domain. Set up at\n\u003e **https://app.splashifypro.com/settings/email-domain**.\n\n```ts\nimport { Configuration, EmailApi } from \"@splashifypro/sdk\";\n\nconst email = new EmailApi(\n  new Configuration({ username: process.env.SPLASHIFY_API_KEY! })\n);\n\nawait email.publicEmailSendPost({\n  body: {\n    to: \"customer@example.com\",\n    subject: \"Your receipt for Order #1042\",\n    html: \"\u003ch1\u003eThanks!\u003c/h1\u003e\u003cp\u003eOrder #1042 confirmed.\u003c/p\u003e\",\n    text: \"Thanks! Order #1042 confirmed.\",\n    from_email: \"billing@yourdomain.com\",\n    from_name: \"Acme Inc.\",\n  },\n});\n```\n\n## Available APIs\n\n| Class                | What it does                                                |\n| -------------------- | ----------------------------------------------------------- |\n| `MessagesApi`        | Send WhatsApp messages (text, template, media, interactive) |\n| `EmailApi`           | Send transactional + templated emails                       |\n| `ContactsApi`        | List + filter contacts                                      |\n| `ConversationsApi`   | Assign chats to team members                                |\n| `MetaConversionsApi` | Fire Meta Pixel / Conversions API events                    |\n\nFull reference, request/response shapes, and per-endpoint examples:\n**https://docs.splashifypro.com/public-api**\n\n## Rate limits\n\nPer-key limits depend on your plan tier. Hitting the limit returns HTTP 429 —\nthe response body includes `Retry-After`. Tier and current consumption are\nvisible at https://app.splashifypro.com/settings/developer.\n\n## TypeScript\n\nFully typed. Every endpoint has request + response interfaces; your IDE will\nauto-complete payload fields and surface validation errors at compile time.\n\n## Compatibility\n\nNode.js 18+ (uses native `fetch`). Works in Bun, Deno (with the `npm:` prefix),\nand Cloudflare Workers / edge runtimes.\n\n## Support\n\n- **Issues / bug reports:** [github.com/splashifypro/sdk-node/issues](https://github.com/splashifypro/sdk-node/issues)\n- **Documentation:** [docs.splashifypro.com/public-api](https://docs.splashifypro.com/public-api)\n- **Email support:** support@splashifypro.in\n\n## License\n\n[MIT](./LICENSE)\n\n---\n\nThis SDK is auto-generated from the official OpenAPI specification. Pull\nrequests for SDK-side improvements (typing, ergonomic wrappers, etc.) are\nwelcome; underlying API changes should be filed against the documentation\nsite.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplashifypro%2Fsdk-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsplashifypro%2Fsdk-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplashifypro%2Fsdk-node/lists"}