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

getpostgetpost 搜索

Agent Skill

getpost 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,656

周安装

194

GitHub Stars

公开资料未说明

下载量

1,552
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install getpost

简介

机器人的 API 平台。电子邮件、短信、搜索、抓取、人工智能、域名、运输 - 一个 API 密钥。

SKILL.md

name
getpost
description
The API platform for bots. Email, SMS, search, scrape, AI, domains, shipping - one API key.
version
1.0.0

GetPost API — Skills for AI Agents

What is GetPost?

GetPost is an API platform built for bots and AI agents. One API key gives you access to email, SMS, web search, web scraping, AI/LLM inference, image/video generation, domain registration, and shipping labels.

Base URL

https://getpost.dev/api

Quick Start

# Sign up (no verification needed)
curl -X POST https://getpost.dev/api/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"name": "YOUR_AGENT_NAME", "bio": "What your agent does"}'

# Save the api_key from the response — it's shown only once
# You'll also get a free email address: YOUR_AGENT_NAME@quik.email

Authentication

All requests (except signup) require:

Authorization: Bearer gp_live_YOUR_KEY

Credits

GetPost uses a credits system. You get 100 free credits at signup. Buy more at: POST /api/balance/topup {"package": "pkg_20"} — packages from $20 (1,000 credits) to $1,000 (120,000 credits).

Available APIs

Email

  • POST /api/email/send — Send email {"to", "subject", "body"}
  • GET /api/email/inbox — Read received emails
  • POST /api/email/addresses — Register dedicated address
  • Cost: 1 credit per email sent, receiving is free

SMS

  • POST /api/sms/send — Send SMS {"to", "body"} (E.164 format)
  • GET /api/sms/inbox — Read received SMS
  • POST /api/sms/numbers — Provision dedicated number
  • Cost: 5 credits per SMS sent

Search

  • POST /api/search — Web search {"query", "num_results"}
  • Cost: 3 credits per search

Web Scrape

  • POST /api/scrape — Scrape URL {"url", "extract_text", "screenshot"}
  • Cost: 5 credits per scrape

AI / LLM Chat

  • GET /api/ai/models — List all models with pricing
  • POST /api/ai/chat — Chat completion {"model", "messages", "max_tokens"}
  • Models: gpt-5.4, gpt-4.1-nano, claude-opus-4-6, claude-sonnet-4-6, gemini-2.5-flash, grok-4, deepseek-chat, kimi-k2.5, and more
  • Cost: per-token, varies by model (see /api/ai/models)

AI Image/Video Generation

  • POST /api/ai/generate — Generate images or videos {"model", "prompt", "n"}
  • GET /api/ai/jobs — List async generation jobs
  • GET /api/ai/jobs/:id — Check job status (live-checks provider if pending)
  • Image models: gpt-image-1, dall-e-3, midjourney, imagen-4, grok-imagine-image, stable-diffusion-3.5
  • Video models: sora-2, grok-imagine-video, veo-3.1
  • Cost: varies by model (2-100 credits per generation)

Domains

  • POST /api/domains/check — Check availability + pricing {"domain"}
  • GET /api/domains/tlds — All 904 TLD prices (cached, no rate limit)
  • POST /api/domains/register — Buy + fully provision a domain {"domain"}
  • POST /api/domains — Add a domain you already own {"domain"}
  • GET /api/domains — List your domains
  • GET /api/domains/:id — Domain details + live status
  • GET /api/domains/:id/nameservers — Get current nameservers
  • PUT /api/domains/:id/nameservers — Update nameservers
  • GET /api/domains/:id/dns — List DNS records
  • POST /api/domains/:id/dns — Add/upsert DNS record (smart merge for SPF/DMARC)
  • PUT /api/domains/:id/dns/:recordId — Update a DNS record
  • DELETE /api/domains/:id/dns/:recordId — Delete a DNS record
  • POST /api/domains/:id/email — Create email on your domain
  • POST /api/domains/:id/verify-email — Verify email sending config
  • Auto-provisions: Cloudflare DNS, nameservers, SendGrid email, default redirect

Mail / Shipping

  • POST /api/mail/rates — Get shipping rates {"from", "to", "parcel"}
  • POST /api/mail/labels — Buy a shipping label
  • GET /api/mail/track/:id — Track a shipment

Balance & Credits

  • GET /api/balance — Check balance and transaction history
  • GET /api/balance/packages — List credit packages with pricing
  • POST /api/balance/topup — Create Stripe checkout {"package": "pkg_50"}
  • POST /api/balance/pay — Direct card payment {"package", "payment_method_id"}

Account

  • GET /api/auth/me — Get your profile
  • PUT /api/auth/me — Update name/bio
  • DELETE /api/auth/me — Delete your account
  • GET /api/auth/rate-limits — Check rate limit status

Webhooks

  • POST /api/webhooks — Register {"url", "events"}
  • GET /api/webhooks — List your webhooks
  • GET /api/webhooks/deliveries — View delivery history (status, latency, errors)
  • DELETE /api/webhooks/:id — Delete a webhook
  • Events: email.received, sms.received, balance.low, balance.credited, generation.completed, * (all)

Logs

  • GET /api/logs — Your request history (method, path, status, latency, credits)
  • GET /api/logs/summary — Aggregated stats by endpoint

Full OpenAPI Spec

https://getpost.dev/api/openapi.json

Pricing

https://getpost.dev/api/pricing

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.12%
按下载量换算1,337

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills