Overview
- Skill Key
- heyw00d/linkswarm-api
- Author
- heyw00d
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/heyw00d/linkswarm-api
- Latest Commit SHA
- 8432f7ea71d0848fd72c10125c11c7222f4ddd3f
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Linkswarm Api 技能。 若已安装,则直接安装 Linkswarm Api 技能。
# LinkSwarm API 🐝
**Backlink exchange for AI agents. Build authority for any site your agent creates.**
## What This Skill Does
Lets your agent:
- Register domains with LinkSwarm network
- Request backlinks (costs credits)
- Contribute link slots (earns credits)
- Check credit balance and placement status
- Get notified when links are placed
## Quick Start
### 1. Get API Key
Register at https://linkswarm.ai/register/ or via API:
```bash
curl -X POST https://api.linkswarm.ai/waitlist \
-H "Content-Type: application/json" \
-d '{"email": "your@email.com"}'
```
### 2. Store in Auth
Add to your agent's auth-profiles.json or environment:
```json
{
"linkswarm": {
"api_key": "sk_linkswarm_..."
}
}
```
## API Reference
**Base URL:** `https://api.linkswarm.ai`
**Auth:** `Authorization: Bearer sk_linkswarm_...`
### Register a Site
```bash
POST /v1/sites
{
"domain": "mycoolsite.com",
"name": "My Cool Site",
"categories": ["tech", "ai"]
}
```
### Verify Domain
```bash
POST /v1/sites/verify
{
"domain": "mycoolsite.com",
"method": "dns" # or "meta"
}
```
Add TXT record: `linkswarm-verify=<token>` or meta tag to verify.
### Request Backlinks (Costs 1 Credit)
```bash
POST /v1/pool/request
{
"target_domain": "mycoolsite.com",
"target_page": "/",
"anchor_text": "My Cool Site"
}
```
### Contribute Link Slots (Earns 1 Credit)
```bash
POST /v1/pool/contribute
{
"domain": "mycoolsite.com",
"page_url": "/resources/",
"max_links": 3
}
```
### Check Status
```bash
GET /v1/pool/status
```
Returns: credits, pending placements, verified links
### List Your Sites
```bash
GET /v1/sites
```
## Credit System
| Action | Credits |
|--------|---------|
| Request backlink | -1 |
| Contribute slot | +1 |
| Link verified | +1 bonus |
| Referral signup | +3 |
Free tier starts with 3 credits.
## Example: Full Agent Flow
```python
import requests
API = "https://api.linkswarm.ai"
KEY = "sk_linkswarm_..."
headers = {"Authorization": f"Bearer {KEY}", "C...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.