Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

sinch-verification-apisinch verification API 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

1,454

周安装

60

GitHub Stars

7

下载量

475
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sinch-verification-api(sinch verification API 文档)
来源仓库:https://github.com/sinch/skills
仓库路径:skills/sinch-verification-api
安装命令:
npx skills add https://github.com/sinch/skills --skill sinch-verification-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sinch/skills --skill sinch-verification-api

简介

用于辅助 API 设计、接口文档和请求响应结构梳理。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中生成 OpenAPI 草稿或检查字段命名。
  • 使用时需确认业务语义、鉴权方式和错误处理规则,避免凭空补字段。
  • 建议从现有代码、schema 或接口样例中提取事实,确保信息准确。
  • 安装前请核实权限范围和维护状态,避免触发不必要的网络或文件操作。

SKILL.md

Sinch Verification API

Overview

The Sinch Verification API verifies phone numbers through SMS OTP, Flashcall (missed call CLI), Phone Call (spoken OTP), Data (carrier-level), and WhatsApp OTP. Used for registration, 2FA, and number ownership confirmation.

Base URL: https://verification.api.sinch.com URL path prefix: /verification/v1/ Auth: Application Key + Secret (NOT project-level OAuth2 — see Authentication Guide)

Agent Instructions

Before generating code, you MUST ask the user:

  1. Which verification method?sms, flashcall, callout, seamless, or whatsapp
  2. SDK or direct HTTP? — If SDK, which language?

Do not assume defaults or skip these questions. Wait for answers before generating code.

For SDK syntax and setup, see sinch-sdks. For direct HTTP, use the API Reference (Markdown) for request/response schemas.

Getting Started

Authentication

See sinch-authentication skill for dashboard setup.

The Verification API uses Application Key + Application Secret (from your Sinch dashboard app), not project-level OAuth2. Three auth methods are supported:

MethodUse for
Application Signed RequestSecure authentication method for production traffic
Basic AuthSimple method for prototyping and trying out API calls
Public AuthInsecure environments (end user's device). Android/iOS SDK only, requires callback webhook

Minimum auth level is configurable in the Sinch Dashboard — requests below that level are rejected. See the Authentication Guide for signing details.

SDK Setup

See sinch-sdks for installation and client initialization across all languages. All SDKs initialize with applicationKey + applicationSecret (not project credentials).

Canonical Example — Start SMS Verification

# Uses Basic Auth (-u) for simplicity. Use Application Signed Requests in production.
curl -X POST \
  "https://verification.api.sinch.com/verification/v1/verifications" \
  -u {APPLICATION_KEY}:{APPLICATION_SECRET} \
  -H 'Content-Type: application/json' \
  -d '{
    "identity": { "type": "number", "endpoint": "+12025550134" },
    "method": "sms"
  }'

Response includes id (verification ID), sms.template, sms.interceptionTimeout, and _links with localized URLs for status/report actions.

Key Concepts

Verification Methods

MethodValueBehavior
SMSsmsSends OTP via SMS. User enters code.
FlashCallflashcallMissed call — caller ID is the OTP. Auto-intercepted on Android; manual entry on iOS/JS.
Phone CallcalloutPSTN call dictates an OTP code. User enters the code into the app (same flow as SMS).
DataseamlessCarrier-level verification via mobile data. No user interaction. Requires account manager to enable.
WhatsAppwhatsappSends OTP via WhatsApp message. User enters code.

Core Model

  • Identity: Always {"type": "number", "endpoint": "+E164_NUMBER"}
  • Verification ID: Returned on start. Used to report code or query status.
  • Reference: Optional unique tracking string in start request. Queryable via status endpoint.
  • Statuses: PENDING | SUCCESSFUL | FAIL | DENIED | ABORTED | ERROR
  • Failure reasons (most common): Invalid code, Expired, Fraud, Blocked, Denied by callback. Full list in the API Reference.

API Endpoints

All endpoints documented in the Verification API Reference.

Start Verification

POST /verification/v1/verifications

Set method to sms, flashcall, callout, seamless, or whatsapp. Optional fields:

  • reference — unique tracking string, passed to all events
  • custom — arbitrary text (max 4096 chars), passed to all events
  • Accept-Language header — controls SMS language (default en-US)

Method-specific options (backend-originated signed requests only): smsOptions, flashCallOptions, calloutOptions, whatsappOptions. See the API Reference for full schemas.

Report Verification

Report by identity: PUT /verification/v1/verifications/number/{endpoint} Report by ID: PUT /verification/v1/verifications/id/{id}

Body includes method and a method-specific object with the user's input:

  • SMS / Phone Call / WhatsApp: {"method": "sms", "sms": {"code": "1234"}} (replace method name + key accordingly)
  • FlashCall: {"method": "flashcall", "flashCall": {"cli": "+46000000000"}} — the cli is the full international caller ID from the incoming missed call

Get Verification Status

By ID: GET /verification/v1/verifications/id/{id} By method + number: GET /verification/v1/verifications/{method}/number/{endpoint} By reference: GET /verification/v1/verifications/reference/{reference}

Note: The by-identity endpoint requires {method} in the path — it is NOT /verifications/number/{endpoint}.

Common Patterns

Standard Verification Flow

  1. StartPOST /verification/v1/verifications with identity + method → receive verification id
  2. Report — User receives code/call → PUT /verification/v1/verifications/id/{id} with the code/CLI
  3. Check statusGET /verification/v1/verifications/id/{id} → confirm SUCCESSFUL

If the code expires or verification fails, you cannot re-report — start a new verification.

Webhooks (Callbacks)

For production flows, configure a callback URL in the Sinch Dashboard. The API sends:

  • VerificationRequestEvent — fired when a verification starts. Respond with action: allow or action: deny to approve/reject.
  • VerificationResultEvent — fired when a verification completes (success or failure). Use for logging, analytics, or triggering downstream actions.

Callbacks are signed — verify signatures using Callback Signing.

Gotchas and Best Practices

  1. Auth is Application Key + Secret, not OAuth2. Do not use project-level credentials.
  2. Use Application Signed Requests in production. Application auth protects integrity of a request
  3. Base64-decode the secret before signing. The dashboard value is base64-encoded.
  4. FlashCall auto-intercepts on Android only. iOS/JS users must manually enter the incoming number. Android SDK is required to intercept calls.
  5. Method availability varies by country. SMS is the most widely available.
  6. Codes expire. Configurable via smsOptions.expiry. Start a new verification if expired — you cannot re-report on a completed/expired verification.
  7. Report by ID is more precise than reporting by phone number.
  8. Rate limit: avoid rapid re-verification of the same number. Implement backoff.
  9. Data verification requires account manager and mobile data (not Wi-Fi).
  10. SMS language may be overridden by carrier compliance (e.g., US shortcode requirements).

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

33.16%
按下载量换算158

Codex

32.68%
按下载量换算155

Cursor

18.14%
按下载量换算86

Gemini CLI

8.83%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills