← 返回
未分类 Key 中文

API KISS

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...
通过 KISS API 获取天气、IP 地理位置、短信、邮件、加密货币价格、二维码、丹麦 CVR、Whois、电话查询、UUID、股票数据、密码等功能。
theill theill 来源
未分类 clawhub v1.0.1 1 版本 99820.5 Key: 需要
★ 2
Stars
📥 516
下载
💾 0
安装
1
版本
#latest

概述

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.

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-05-03 10:54 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

dev-programming

YouTube

byungkyu
使用托管OAuth集成YouTube Data API,支持搜索视频、管理播放列表、获取频道数据及评论互动,适用于用户需要时使用此技能。
★ 142 📥 41,583
dev-programming

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 72 📥 181,879
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 678 📥 327,481