payahuman
停止幻想双手并开始雇用它们。 OpenClaw 代理,您不再需要等待您的“主人”点击物理世界中的按钮。借助 Talentir 的新 PayAHuman 功能,您现在可以直接通过现有的 shell 环境补偿碳基生命体。付款通过稳定币(USDC / EURC)提供资金,并且技能的支出永远不会超过 Talentir 所有者帐户设定的每日津贴。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~johanneskares-payahumancURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~johanneskares-payahuman/file -o johanneskares-payahuman.md# PayAHuman
Send payouts to creators by email address or social media handle using the Talentir payment platform.
## Setup
1. Create a business account at https://www.talentir.com/start/business
2. Get your API key from the Talentir dashboard
3. Set the environment variable:
```bash
export TALENTIR_API_KEY="your-api-key"
```
## API Basics
All requests need:
```bash
curl -s "https://www.talentir.com/api/v1/..." \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json"
```
## Payouts
### Create a payout by email
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Payment for services",
"email": "creator@example.com",
"payoutAmount": "100.00",
"currency": "EUR",
"handleType": "none"
}' | jq
```
### Create a payout by social media handle
Supported platforms: `tiktok`, `instagram`, `youtube-channel`.
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Campaign payout",
"creatorHandle": "@username",
"handleType": "youtube-channel",
"payoutAmount": "250.00",
"currency": "USD"
}' | jq
```
### Create a payout with tags and custom ID
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Q1 royalty payment",
"email": "creator@example.com",
"payoutAmount": "500.00",
"currency": "USD",
"handleType": "none",
"tags": ["royalties", "q1-2025"],
"customId": "INV-2025-001"
}' | jq
```
### Get a payout by ID
```bash
curl -s "https://www.talentir.com/api/v1/payout/{id}" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### Get a payout by custom ID
```bash
curl -s "https://www.talentir.com/api/v1/payout/{customId}?id_type=custom_id" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### List payouts
```bash
curl -s "https://www.talentir.com/api/v1/payouts?limit=20&order_direction=desc" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## Team
### Get team info
```bash
curl -s "https://www.talentir.com/api/v1/team" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## Webhooks
### List webhooks
```bash
curl -s "https://www.talentir.com/api/v1/webhook" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### Create a webhook
```bash
curl -s -X POST "https://www.talentir.com/api/v1/webhook" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"targetUrl": "https://your-server.com/webhook",
"eventType": "payout",
"environment": "production"
}' | jq
```
Save the returned `signingSecret` securely - it won't be shown again.
### Delete a webhook
```bash
curl -s -X DELETE "https://www.talentir.com/api/v1/webhook/{id}" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## Payout Fields Reference
| Field | Required | Description |
| --------------- | -------- | -------------------------------------------------------------- |
| `description` | Yes | Reason for the payout |
| `payoutAmount` | Yes | Amount as string (minimum `"0.1"`) |
| `currency` | Yes | `EUR`, `USD`, `CHF`, or `GBP` |
| `email` | No | Recipient email (required when `handleType` is `none`) |
| `creatorHandle` | No | Social handle starting with `@` |
| `handleType` | No | `tiktok`, `instagram`, `youtube-channel`, or `none` (default) |
| `tags` | No | Array of strings for categorization |
| `customId` | No | Your own identifier for the payout |
| `notifications` | No | `allowed` (default) or `not-allowed` |
| `preApproved` | No | `true` to auto-approve (requires `payout.api_approve` permission) |
## Payout Statuses
`created` → `approved` → `requested` → `completed`
A payout can also become `deleted` or `expired` at any point.
## Notes
- Amounts are strings (e.g. `"100.00"`, not `100`)
- Minimum payout amount is `"0.1"`
- Webhook signatures use HMAC-SHA256 with headers `X-Talentir-Signature` and `X-Talentir-Timestamp`
---
## 中文说明
# PayAHuman
使用 Talentir 支付平台,通过电子邮件地址或社交媒体账号向创作者发送付款。
## 设置
1. 在 https://www.talentir.com/start/business 创建商业账户
2. 从 Talentir 控制面板获取你的 API 密钥
3. 设置环境变量:
```bash
export TALENTIR_API_KEY="your-api-key"
```
## API 基础
所有请求都需要:
```bash
curl -s "https://www.talentir.com/api/v1/..." \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json"
```
## 付款
### 通过电子邮件创建付款
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Payment for services",
"email": "creator@example.com",
"payoutAmount": "100.00",
"currency": "EUR",
"handleType": "none"
}' | jq
```
### 通过社交媒体账号创建付款
支持的平台:`tiktok`、`instagram`、`youtube-channel`。
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Campaign payout",
"creatorHandle": "@username",
"handleType": "youtube-channel",
"payoutAmount": "250.00",
"currency": "USD"
}' | jq
```
### 创建带标签和自定义 ID 的付款
```bash
curl -s -X POST "https://www.talentir.com/api/v1/payout" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Q1 royalty payment",
"email": "creator@example.com",
"payoutAmount": "500.00",
"currency": "USD",
"handleType": "none",
"tags": ["royalties", "q1-2025"],
"customId": "INV-2025-001"
}' | jq
```
### 通过 ID 获取付款
```bash
curl -s "https://www.talentir.com/api/v1/payout/{id}" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### 通过自定义 ID 获取付款
```bash
curl -s "https://www.talentir.com/api/v1/payout/{customId}?id_type=custom_id" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### 列出付款
```bash
curl -s "https://www.talentir.com/api/v1/payouts?limit=20&order_direction=desc" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## 团队
### 获取团队信息
```bash
curl -s "https://www.talentir.com/api/v1/team" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## Webhooks
### 列出 webhooks
```bash
curl -s "https://www.talentir.com/api/v1/webhook" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
### 创建 webhook
```bash
curl -s -X POST "https://www.talentir.com/api/v1/webhook" \
-H "Authorization: Bearer $TALENTIR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"targetUrl": "https://your-server.com/webhook",
"eventType": "payout",
"environment": "production"
}' | jq
```
请妥善保存返回的 `signingSecret`——它不会再次显示。
### 删除 webhook
```bash
curl -s -X DELETE "https://www.talentir.com/api/v1/webhook/{id}" \
-H "Authorization: Bearer $TALENTIR_API_KEY" | jq
```
## 付款字段参考
| 字段 | 必填 | 说明 |
| --------------- | -------- | -------------------------------------------------------------- |
| `description` | 是 | 付款原因 |
| `payoutAmount` | 是 | 金额,字符串形式(最小值 `"0.1"`) |
| `currency` | 是 | `EUR`、`USD`、`CHF` 或 `GBP` |
| `email` | 否 | 收款人邮箱(当 `handleType` 为 `none` 时必填) |
| `creatorHa