Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

toolweb-otply工具网 otply

Agent Skill

toolweb-otply 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,784

周安装

116

GitHub Stars

公开资料未说明

下载量

928
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:toolweb-otply(工具网 otply)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-otply
安装命令:
openclaw skills install toolweb-otply
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-otply

简介

简单快速的电子邮件OTP验证服务。

  • 适用于用户身份验证和安全登录。toolweb-otply 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 提供一次性密码生成和发送功能。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需配置SMTP服务和模板样式。
  • 敏感操作应设置合理有效期和尝试次数限制。

SKILL.md

name
OTPLY API
description
Email OTP Service - Simple, Fast, Reliable

Overview

OTPLY is a straightforward email-based One-Time Password (OTP) service designed for developers who need reliable email verification without complexity. Whether you're building user authentication, account recovery, or sensitive transaction verification, OTPLY delivers OTP codes directly to user inboxes with minimal latency and maximum reliability.

The service handles the entire OTP lifecycle: registration, credential management, OTP generation, delivery, and verification. It supports customizable OTP expiry times, purpose-based tracking, and template flexibility. Real-time usage statistics let you monitor consumption against your plan limits, ensuring you stay within budget while maintaining frictionless user experiences.

OTPLY is ideal for SaaS platforms, fintech applications, healthcare portals, and any service prioritizing secure email-based identity verification. Built by security professionals and available through multiple integration channels, it combines enterprise-grade reliability with developer-friendly APIs.

Usage

Example: Send and Verify OTP

Request to send OTP:

POST /api/v1/send-otp
Headers:
  X-API-Key: your_api_key_here
  X-API-Secret: your_api_secret_here
  Content-Type: application/json

{
  "email": "user@example.com",
  "purpose": "login_verification",
  "template": "default",
  "expiry_minutes": 15
}

Response:

{
  "success": true,
  "message": "OTP sent successfully to user@example.com",
  "expires_in": 900,
  "reference_id": "ref_1a2b3c4d5e6f7g8h"
}

Request to verify OTP:

POST /api/v1/verify-otp
Headers:
  X-API-Key: your_api_key_here
  X-API-Secret: your_api_secret_here
  Content-Type: application/json

{
  "email": "user@example.com",
  "otp": "654321",
  "purpose": "login_verification"
}

Response:

{
  "success": true,
  "message": "OTP verified successfully",
  "verified_at": "2024-01-15T10:30:45.123456Z"
}

Endpoints

GET /

Root endpoint - API root information.

ParameterTypeRequiredDescription
None

Response: Returns API root metadata.


GET /health

Health Check - Service health status endpoint.

ParameterTypeRequiredDescription
None

Response: Returns HTTP 200 with service health information.


POST /api/v1/register

Register - Create a new customer account.

ParameterTypeRequiredDescription
emailstring (email)YesCustomer email address
passwordstringYesAccount password
company_namestringNoCompany name (optional)

Response:

{
  "success": true,
  "message": "Registration successful"
}

Errors:

  • 422: Validation error (invalid email format, missing required fields, etc.)

POST /api/v1/login

Login - Authenticate and retrieve API credentials.

ParameterTypeRequiredDescription
emailstring (email)YesCustomer email address
passwordstringYesAccount password

Response:

{
  "success": true,
  "message": "Login successful",
  "token": "jwt_token_here",
  "api_key": "key_1a2b3c4d5e6f7g8h",
  "api_secret": "secret_1a2b3c4d5e6f7g8h"
}

Errors:

  • 422: Validation error (invalid email format, missing fields)

POST /api/v1/send-otp

Send OTP - Send a one-time password to an email address.

ParameterTypeRequiredDescription
X-API-Keystring (header)YesYour API key
X-API-Secretstring (header)YesYour API secret
emailstring (email)YesRecipient email address
purposestringNoOTP purpose (e.g., "verification", "login", "recovery"); defaults to "verification"
templatestringNoEmail template name; defaults to "default"
expiry_minutesintegerNoOTP validity in minutes; defaults to 10

Response:

{
  "success": true,
  "message": "OTP sent successfully",
  "expires_in": 600,
  "reference_id": "ref_1a2b3c4d5e6f7g8h"
}

Errors:

  • 422: Validation error (invalid email, invalid expiry_minutes, etc.)

POST /api/v1/verify-otp

Verify OTP - Validate an OTP code against a stored request.

ParameterTypeRequiredDescription
X-API-Keystring (header)YesYour API key
X-API-Secretstring (header)YesYour API secret
emailstring (email)YesEmail address associated with OTP
otpstringYesThe OTP code to verify (typically 6 digits)
purposestringNoOTP purpose for matching; defaults to "verification"

Response:

{
  "success": true,
  "message": "OTP verified successfully",
  "verified_at": "2024-01-15T10:30:45.123456Z"
}

Errors:

  • 422: Validation error (invalid email, missing OTP, etc.)

GET /api/v1/usage

Get Usage - Retrieve current usage statistics and remaining credits.

ParameterTypeRequiredDescription
X-API-Keystring (header)YesYour API key
X-API-Secretstring (header)YesYour API secret

Response:

{
  "customer": "user@example.com",
  "plan": "Professional",
  "credits_remaining": 4500,
  "credits_total": 5000,
  "usage": {
    "send_otp": 450,
    "verify_otp": 50
  }
}

Errors:

  • 422: Validation error (missing API credentials)

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.toolweb.in/tools/otply
  • API Docs: https://api.toolweb.in:8168/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

92.06%
按下载量换算854

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills