Official Sinch API skills for AI coding agents — SMS, Voice, Verification, Numbers, Mailgun email, and more.
71
89%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
using Sinch;
var sinch = new SinchClient("YOUR_PROJECT_ID",
"YOUR_KEY_ID",
"YOUR_KEY_SECRET");With SDK v2 (upcoming), region will be required for Conversation usage. Set region explicitly now to stay forward-compatible.
using Sinch;
using Sinch.Conversation;
var sinch = new SinchClient("YOUR_PROJECT_ID",
"YOUR_KEY_ID",
"YOUR_KEY_SECRET",
options => options.ConversationRegion = ConversationRegion.Eu); // Us, Eu, or BrWith project credentials:
using Sinch;
var sinch = new SinchClient("YOUR_PROJECT_ID",
"YOUR_KEY_ID",
"YOUR_KEY_SECRET");
var voice = sinch.Voice("YOUR_APP_KEY", "YOUR_APP_SECRET");
var verification = sinch.Verification("YOUR_APP_KEY", "YOUR_APP_SECRET");Voice/Verification only (no project credentials):
using Sinch;
var sinch = new SinchClient(null, null, null);
var voice = sinch.Voice("YOUR_APP_KEY", "YOUR_APP_SECRET");skills
sinch-10dlc
references
sinch-authentication
sinch-conversation-api
sinch-elastic-sip-trunking
references
sinch-fax-api
sinch-imported-numbers-hosting-orders
references
sinch-in-app-calling
sinch-mailgun
references
sinch-mailgun-inspect
references
sinch-mailgun-optimize
references
sinch-mailgun-validate
sinch-number-lookup-api
sinch-number-order-api
sinch-numbers-api
references
sinch-porting-api
sinch-provisioning-api
sinch-sdks
sinch-verification-api