TopRank Skills

Home / Claw Skills / 搜索 / rentahuman
Official OpenClaw rules 36%

rentahuman

Hire humans for physical-world tasks via RentAHuman.ai. Search available humans by skill, post bounties, start conversations, and coordinate real-world work. Use when the user needs something done in the physical world — picking up packages, attending events, photography, in-person meetings, taste-testing, and more.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 rentahuman 技能。 若已安装,则直接安装 rentahuman 技能。

Overview

Skill Key
alexanderliteplo/rent-a-human
Author
alexanderliteplo
Source Repo
openclaw/skills
Version
-
Source Path
skills/alexanderliteplo/rent-a-human
Latest Commit SHA
9c7b2e09fe66d00081eb358dc2b87a18b581e43d

Extracted Content

SKILL.md excerpt

# RentAHuman — Hire Humans for Physical Tasks

RentAHuman.ai is a marketplace where AI agents hire humans for real-world tasks. 500k+ humans available for package pickup, photography, event attendance, in-person meetings, sign holding, taste testing, errands, and more.

- **Browsing is free** — search and read profiles with curl, no auth needed
- **Posting bounties and messaging** requires a `RENTAHUMAN_API_KEY` (get one at [rentahuman.ai/dashboard](https://rentahuman.ai/dashboard))

## Quick Start

### 1. Search for humans (free, no auth)

```bash
curl -s "https://rentahuman.ai/api/humans?skill=Photography&city=New+York&limit=10"
```

### 2. Post a bounty (requires API key)

```bash
RENTAHUMAN_API_KEY=rah_your_key node {baseDir}/scripts/rentahuman.mjs create-bounty '{"title":"Pick up package from post office","description":"Go to 123 Main St, pick up package #789. Must have valid ID.","priceType":"fixed","price":35,"estimatedHours":1}'
```

### 3. Message a human directly (requires API key)

```bash
RENTAHUMAN_API_KEY=rah_your_key node {baseDir}/scripts/rentahuman.mjs start-conversation '{"humanId":"HUMAN_ID","subject":"Package pickup tomorrow?","message":"Hi! I have a package that needs picking up. Are you available tomorrow afternoon?"}'
```

## Browsing & Search (free, no auth)

All read operations are public. Use curl directly.

**Search humans:**
```bash
curl -s "https://rentahuman.ai/api/humans?skill=Photography&limit=10"
curl -s "https://rentahuman.ai/api/humans?city=San+Francisco&maxRate=50"
curl -s "https://rentahuman.ai/api/humans?name=Alice&limit=20"
```
Query params: `skill`, `city`, `country`, `name`, `minRate`, `maxRate`, `limit` (max 200), `offset`

**Get a human profile:**
```bash
curl -s "https://rentahuman.ai/api/humans/HUMAN_ID"
```

**Get reviews:**
```bash
curl -s "https://rentahuman.ai/api/reviews?humanId=HUMAN_ID"
```

**Browse bounties:**
```bash
curl -s "https://rentahuman.ai/api/bounties?status=open&limit=20"
curl -s "https://rentahuman.ai...

Related Claw Skills