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

apikissapikiss 邮件管理

Agent Skill

apikiss 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,646

周安装

155

GitHub Stars

2

下载量

1,277
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install apikiss

简介

apikiss 提供天气、IP 定位、邮件验证等多种 API 查询能力,适合快速获取外部数据。

  • 适用于需要调用第三方服务验证邮箱、查询地理位置或获取实时信息的开发场景。
  • 通过关键词触发,自动执行对应 API 请求并返回结构化结果,支持多种数据类型查询。
  • 安装前需确认 API 密钥配置和网络权限,部分功能可能涉及敏感信息传输。
  • 建议在使用前查阅原始文档,了解各接口的调用限制和计费方式。

SKILL.md

name
apikiss
description
Access weather, IP geolocation, SMS, email, crypto prices, QR codes, Danish CVR, Whois, phone lookup, UUID, stock data, passwords, and more via the API KISS unified gateway (apikiss.com).
homepage
https://www.apikiss.com
metadata
{"openclaw": {"emoji": "💋", "requires": {"env": ["APIKISS_API_KEY"]}, "primaryEnv": "APIKISS_API_KEY"}}

API KISS

Use the API KISS unified gateway to call dozens of services through one consistent API with Bearer token auth.

API KISS queries multiple upstream providers in parallel for read operations (returning the fastest response) and uses smart fallback for write operations (trying alternative providers on failure).

Setup

Set your API key as an environment variable:

APIKISS_API_KEY=your_token_here

All requests use:

  • Base URL: https://www.apikiss.com/api/v1/
  • Auth header: Authorization: Bearer $APIKISS_API_KEY
  • Method: GET for all endpoints (parameters are query strings)

Available Endpoints

EndpointDescriptionRequired Params
/weatherCurrent weather by coordinateslatitude, longitude
/ipYour IP address_(none)_
/smsSend SMS worldwidephone, message
/flash-smsSend flash SMS (appears on screen instantly)to, message
/emailSend email (HTML or plain text)to, subject, + body or html
/cryptoReal-time cryptocurrency price in USDsymbol
/cvrDanish Business Registry lookupquery
/whoisDomain registration infodomain
/phone-lookupValidate phone number, carrier, type, countryphone
/uuidGenerate a UUID v4 (free)_(none)_
/stockReal-time stock quotesymbol
/timeCurrent time at coordinateslatitude, longitude
/passwordGenerate a secure passwordlength _(optional)_
/password/validateCheck password strength (score 0-4)password (JSON body)
/photoGet a random photo URL_(none)_
/qr-codeGenerate QR code (binary PNG/SVG) (free)data
/qr-code/generateGenerate QR code (JSON with base64 image) (free)data
/chuck-norris-factsRandom Chuck Norris fact (free)_(none)_

Endpoint Details

Weather — GET /weather

Returns current conditions: temperature (Celsius + Kelvin), humidity, pressure, visibility, and summary.

ParamTypeRequiredDescription
latitudenumberyesLatitude of the location
longitudenumberyesLongitude of the location

IP — GET /ip

Returns your current IP address. No parameters needed.

SMS — GET /sms

Sends an SMS message. Returns { "success": true }.

ParamTypeRequiredDescription
phonestringyesRecipient phone number (e.g. +4512345678)
messagestringyesMessage text

Flash SMS — GET /flash-sms

Sends a flash SMS that appears directly on the recipient's screen. Returns message_id and status.

ParamTypeRequiredDescription
tostringyesRecipient phone number
messagestringyesMessage text

Email — GET /email

Sends an email via providers like Resend. Returns success, provider, and message_id.

ParamTypeRequiredDescription
tostringyesRecipient email address
subjectstringyesEmail subject line
bodystringconditionalPlain text body (required if html not provided)
htmlstringconditionalHTML body (required if body not provided)
fromstringnoSender address (defaults to noreply@apikiss.com)

Crypto — GET /crypto

Returns the current price in USD, averaged from multiple exchanges.

ParamTypeRequiredDescription
symbolstringyesCryptocurrency symbol (e.g. BTC, ETH)

CVR — GET /cvr

Danish Business Registry. Returns company name, CVR number, address, phone, email, country.

ParamTypeRequiredDescription
querystringyesCompany name or CVR number

Whois — GET /whois

Domain registration details (registrar, dates, nameservers).

ParamTypeRequiredDescription
domainstringyesDomain name (e.g. example.com)

Phone Lookup — GET /phone-lookup

Validates a phone number. Returns validity, country, carrier, and line type.

ParamTypeRequiredDescription
phonestringyesPhone number to look up

UUID — GET /uuid

Generates a cryptographically secure UUID v4. No parameters. Free tier.

Stock — GET /stock

Returns the current stock price.

ParamTypeRequiredDescription
symbolstringyesStock ticker symbol (e.g. AAPL)

Time — GET /time

Returns the current time at the given coordinates as an ISO 8601 timestamp.

ParamTypeRequiredDescription
latitudenumberyesLatitude
longitudenumberyesLongitude

Password — GET /password

Generates a secure random password.

ParamTypeRequiredDescription
lengthintegernoDesired password length

Password Validate — GET /password/validate

Checks password strength. Returns a score (0–4) and feedback with suggestions. Send a JSON body: { "password": "MySecurePassword123!" }

Photo — GET /photo

Returns a random photo URL. No parameters.

QR Code (binary) — GET /qr-code

Returns a raw PNG or SVG image file directly.

ParamTypeRequiredDescription
datastringyesText/URL to encode
sizeintegernoSize in pixels (32–1024)
output_formatstringnopng or svg
error_correctionstringnol, m, q, or h
foregroundstringnoHex color (e.g. #ff0000)
backgroundstringnoHex color (e.g. #ffffff)

QR Code (JSON) — GET /qr-code/generate

Returns JSON with base64-encoded image data. Same parameters as above.

Chuck Norris Facts — GET /chuck-norris-facts

Returns a random Chuck Norris fact. No parameters. Free tier.

Usage Examples

Weather

curl "https://www.apikiss.com/api/v1/weather?latitude=55.6761&longitude=12.5683" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

IP

curl "https://www.apikiss.com/api/v1/ip" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

Send SMS

curl "https://www.apikiss.com/api/v1/sms?phone=%2B4512345678&message=Hello+from+OpenClaw!" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

Send Email

curl "https://www.apikiss.com/api/v1/email?to=recipient%40example.com&subject=Hello&body=Hi+there" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

Crypto Price

curl "https://www.apikiss.com/api/v1/crypto?symbol=BTC" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

Danish CVR Lookup

curl "https://www.apikiss.com/api/v1/cvr?query=Novo+Nordisk" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

QR Code (save as PNG)

curl "https://www.apikiss.com/api/v1/qr-code?data=https%3A%2F%2Fexample.com&size=256" \
  -H "Authorization: Bearer $APIKISS_API_KEY" -o qr.png

Generate Password

curl "https://www.apikiss.com/api/v1/password?length=20" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

Stock Quote

curl "https://www.apikiss.com/api/v1/stock?symbol=AAPL" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

UUID

curl "https://www.apikiss.com/api/v1/uuid" \
  -H "Authorization: Bearer $APIKISS_API_KEY"

External Endpoints

All requests go to: https://www.apikiss.com/api/v1/*

Data sent includes only the query parameters you provide (e.g. coordinates, phone number, symbol). Your APIKISS_API_KEY is sent as a Bearer token in the Authorization header and never logged locally.

Security & Privacy

  • Your API key stays in your environment — never in prompts or logs.
  • Only the data you explicitly pass as parameters leaves your machine.
  • API KISS does not store request payloads.

Trust Statement

By using this skill, queries are sent to https://www.apikiss.com. Only install if you trust apikiss.com with the data you pass to it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.51%
按下载量换算964

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills