Rentahuman · Arazzo Workflow

RentAHuman — search and book a human

Version 1.0.0

Find an available human by skill, review the profile, create a booking for a physical-world task, confirm it, and read back the booking status.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CompanyMarketplaceAI AgentsHuman-in-the-LoopGig EconomyMCPLaborPaymentsArazzoWorkflows

Provider

rentahuman

Workflows

searchAndBookHuman
Search, inspect, book, confirm, and check a human booking.
5 steps inputs: agentId, agentType, estimatedHours, maxRate, skill, startTime, taskDescription, taskTitle outputs: bookingId, status
1
findHumans
2
inspectHuman
3
bookHuman
4
confirmBooking
5
checkBooking

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: RentAHuman — search and book a human
  version: 1.0.0
  description: >-
    Find an available human by skill, review the profile, create a booking for a
    physical-world task, confirm it, and read back the booking status.
sourceDescriptions:
- name: bookingsApi
  url: ../openapi/rentahuman-bookings-api-openapi.yml
  type: openapi
- name: humansApi
  url: ../openapi/rentahuman-humans-api-openapi.yml
  type: openapi
workflows:
- workflowId: searchAndBookHuman
  summary: Search, inspect, book, confirm, and check a human booking.
  inputs:
    type: object
    required: [skill, agentId, agentType, taskTitle, taskDescription, startTime, estimatedHours]
    properties:
      skill: {type: string}
      maxRate: {type: number}
      agentId: {type: string}
      agentType: {type: string, enum: [clawdbot, moltbot, openclaw, other]}
      taskTitle: {type: string}
      taskDescription: {type: string}
      startTime: {type: string, format: date-time}
      estimatedHours: {type: number}
  steps:
  - stepId: findHumans
    operationId: searchHumans
    parameters:
    - name: skill
      in: query
      value: $inputs.skill
    - name: maxRate
      in: query
      value: $inputs.maxRate
    - name: limit
      in: query
      value: 20
    outputs:
      firstHumanId: $response.body#/humans/0/id
  - stepId: inspectHuman
    operationId: getHuman
    parameters:
    - name: id
      in: path
      value: $steps.findHumans.outputs.firstHumanId
    outputs:
      humanId: $response.body#/human/id
  - stepId: bookHuman
    operationId: createBooking
    requestBody:
      contentType: application/json
      payload:
        humanId: $steps.inspectHuman.outputs.humanId
        agentId: $inputs.agentId
        agentType: $inputs.agentType
        taskTitle: $inputs.taskTitle
        taskDescription: $inputs.taskDescription
        startTime: $inputs.startTime
        estimatedHours: $inputs.estimatedHours
    outputs:
      bookingId: $response.body#/booking/id
  - stepId: confirmBooking
    operationId: updateBooking
    parameters:
    - name: id
      in: path
      value: $steps.bookHuman.outputs.bookingId
    requestBody:
      contentType: application/json
      payload:
        status: confirmed
  - stepId: checkBooking
    operationId: getBooking
    parameters:
    - name: id
      in: path
      value: $steps.bookHuman.outputs.bookingId
    outputs:
      status: $response.body#/booking/status
  outputs:
    bookingId: $steps.bookHuman.outputs.bookingId
    status: $steps.checkBooking.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/rentahuman-search-and-book"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.