Install
openclaw skills install @runapi-ai/runapi-cliInstall and use the RunAPI CLI for one-off artifacts and results from registered CLI-backed services. Use when the user asks an agent to inspect installed commands, run a supported service, pass JSON request bodies, wait for tasks, or automate a supported RunAPI workflow from the terminal. Use an SDK for app or production integration.
openclaw skills install @runapi-ai/runapi-cliThe runapi CLI executes one-off artifacts or results only for services in its
installed command catalog. An app, backend, worker, library, or production code
integration uses a RunAPI SDK instead.
Use the CLI for a one-off artifact or result. Use an SDK for an app, backend,
worker, library, or production code. Before composing a service command,
discover the installed command catalog with runapi --help; proceed only when
it lists the service. An absent service routes to its SDK or public API contract,
not to a guessed CLI command.
| Target | Command |
|---|---|
| macOS / Linux (interactive) | brew install runapi-ai/tap/runapi |
| Server / CI (headless) | curl -fsSL https://runapi.ai/cli/install.sh | sh |
The installer detects OS and architecture (Linux and macOS, amd64 and arm64), verifies a SHA-256 checksum from https://runapi.ai/cli/latest.json, and refuses to write the binary if verification fails.
Check the current state first:
runapi auth status
| Source | How |
|---|---|
| Environment (agent/headless default) | Read RUNAPI_API_KEY from the environment |
| Saved config (agent/server/CI) | printf '%s' "$RUNAPI_API_KEY" | runapi auth import-token --token - (writes ~/.config/runapi/config.json with mode 0600) |
| Browser login (interactive fallback) | runapi login in a terminal, or the MCP login tool from an MCP host |
RUNAPI_BASE_URL overrides the default base URL.
The RunAPI MCP Server reads the same ~/.config/runapi/config.json as the CLI. After runapi login or the MCP login tool completes, authenticated MCP tools can use the saved credentials after the host reloads config if needed.
Avoid runapi auth import-token --token "$KEY" directly — the value would be visible in ps -ef on shared hosts. Use stdin (--token -) or RUNAPI_API_KEY in the environment.
The CLI is JSON-first: every service exposes typed commands, and each command
documents its request fields through --help. Always inspect before composing a
request instead of guessing flags.
runapi --help
runapi suno --help
runapi suno text-to-music --help
Select capability in order: use runapi --help to choose a listed service,
then inspect runapi <service> --help. Choose <action> only from service help,
then inspect runapi <service> <action> --help for the current request contract,
including nested fields and rules. Use only the listed service, action, model,
fields, and conditional combinations.
Write valid JSON to a file and pass it with --input-file. The default command
waits synchronously and polls until the task completes. Use inline --input or
stdin only when the caller specifically needs that transport.
# Synchronous: submit and poll until done
runapi suno text-to-music --input-file request.json
# Asynchronous: submit and return immediately, then poll separately
runapi suno text-to-music --async --input-file request.json
runapi wait <task-id> --service suno --action text-to-music
# Inspect a task without waiting
runapi get <task-id> --service suno --action text-to-music
Use --async only when the user explicitly requests background execution,
polling, or webhook integration. Preserve the returned task ID and use the exact
service/action pair from the submitted command for get or wait.
JSON responses go to stdout; progress lines go to stderr. Pipe to jq for downstream parsing.
runapi account info
runapi account balance
Pricing commands return current estimates for paid tasks. pricing list and
ordinary pricing quote calls do not require an API key. A quote with an
Account-owned source_task_id follows the normal API-key authentication rules.
runapi pricing list --service suno
runapi pricing quote --service suno --action text_to_music --model suno-v4 \
--params '{"vocal_mode":"auto_lyrics","prompt":"A chill lo-fi beat"}'
runapi pricing quote --service suno --action text_to_music --model suno-v4 \
--params-file pricing-inputs.json
Listener access requires the credential issued by runapi login; an ordinary imported API key cannot list callback candidates, read a Listen Signing Secret, or open a listener. This restriction applies only to listener operations: ordinary API keys can still create and query tasks.
Before running a listener from an agent, check the saved auth and list the current member's key metadata:
runapi auth status
runapi api-keys list --json
If the API returns cli_listen_required, explain that the imported key keeps its existing API access but cannot list or select listener keys. Ask the user to remove any --api-key or RUNAPI_API_KEY override, then complete runapi login in their terminal (or the MCP login tool) and retry runapi listen. Do not retry with an imported API key or a management key.
Each candidate contains id, name, masked_token, and enabled. Select an enabled stable id; names and masks are display context only, so renaming a key does not invalidate a stored selection. When more than one enabled key is available and the project does not identify one, present the candidates to the user instead of choosing one silently.
Selection precedence is:
--callback-api-key-id <id> for this invocation. It does not rewrite project config.callback_api_key_id from .runapi.toml at the git root, or from the current directory outside a git repository.Non-TTY invocations never select automatically. Without a flag or config, the callback_api_key_required error includes the candidate list so an agent can choose explicitly.
Project config has one allowed field and is safe to commit:
callback_api_key_id = "token_abc123"
Do not add credentials, key names, masks, signing secrets, forwarding URLs, or base_url to .runapi.toml; unknown fields are rejected.
Pass the selected ID explicitly from an agent. The listener receives only tasks created with that API key:
runapi listen localhost:3000/webhooks/runapi --callback-api-key-id token_abc123
The CLI acknowledges each valid listener event before attempting the local HTTP request. It forwards each event locally once and reports non-2xx responses or connection errors without requesting a listener replay. This local debugging behavior does not change delivery retries for a Task's callback_url.
Each Account can run up to 100 active listeners per Callback Subscription Key and 1,000 in total. When a limit is reached, stop an idle listener or wait and retry; the response identifies which limit is full. The CLI honors the server's Retry-After delay when present. Idle polling checks for events about every 15 to 30 seconds. Events are normally found within about 15 seconds and are read immediately when available.
Startup output identifies the selected key by name, ID, and mask, prints the absolute project config path, and prints that key's stable Listen Signing Secret. To inject the secret without starting a listener, keep it out of logs and project config:
RUNAPI_WEBHOOK_SECRET="$(runapi listen --print-secret --callback-api-key-id token_abc123)"
If the secret is exposed, rotate only the selected key's Listen Signing Secret:
RUNAPI_WEBHOOK_SECRET="$(runapi listen --rotate-secret --callback-api-key-id token_abc123)"
This invalidates every active listener using the selected key without rotating its business API credential. Update each local verifier with the printed secret, then restart those listeners.
Recovery rules:
runapi api-keys list --json, select that member's key, and pass its ID explicitly. Update the one-line project config only when the project should adopt that member-specific selection.callback_api_key_unusable means the selected key was disabled, discarded, or lost membership. The listener exits without falling back; list keys and select another one explicitly.runapi login again, restart listeners, and replace the old local webhook secret.Pass an agent-readable local path directly to a top-level media URL field. The
CLI uploads the file before submitting the request and replaces the field value
with the temporary URL. Remote http:// and https:// values stay unchanged.
Use runapi files create only for a reusable URL, Base64 input, or a
contract-required upload. This temporary upload command returns a URL and
remains available unchanged.
runapi files create ./image.png --file-name image.png
runapi files create --url https://cdn.runapi.ai/public/samples/mask.png --file-name image.png
runapi files create --base64 "$BASE64_IMAGE" --file-name image.png
The command returns JSON with file_name, url, size_bytes, mime_type, created_at, and expires_at. The returned url is a one-hour temporary File Upload URL. Use it in endpoint fields that accept media URLs; check the model/action docs for the exact field name. Add --url-only when a script needs only the temporary URL on stdout.
Use persistent Files when the caller needs a stable File ID instead of a URL. Inspect each command before composing it:
runapi files create-file ./knowledge.pdf
runapi files list --order desc
runapi files retrieve file_123
runapi files content file_123 --output ./knowledge-copy.pdf
runapi files delete file_123
Use multipart Uploads to send Parts before composing the final File. Preserve Part ID order when retrying an uncertain completion response:
runapi uploads create --bytes 1048576 --filename archive.bin --mime-type application/octet-stream
runapi uploads add-part upload_123 ./archive.part-01
runapi uploads complete upload_123 --part-id part_123
runapi uploads cancel upload_123
Inspect runapi files --help, runapi uploads --help, and each selected
subcommand's help for the installed lifecycle contract.
runapi agent install-skill --target claude # ~/.claude/skills/runapi-cli/
runapi agent install-skill --target codex # ~/.codex/skills/runapi-cli/
runapi agent install-skill --target gemini # ~/.gemini/skills/runapi-cli/
runapi agent install-skill --target openclaw # ~/.openclaw/skills/runapi-cli/
runapi agent list-targets # JSON list with resolved paths
runapi agent install-skill --target-dir <path> # custom location
This skill is installed independently from the runapi binary and usually
tracks the newest CLI behavior. If a command, action, flag, or input field
described here is unavailable or behaves differently, check the installed CLI
version and update it before changing the request:
runapi version
brew upgrade runapi-ai/tap/runapi
# or reinstall
curl -fsSL https://runapi.ai/cli/install.sh | sh
After updating, inspect the command help again:
runapi --help
runapi <service> --help
runapi <service> <action> --help
RUNAPI_API_KEY or runapi auth import-token instead.runapi login by default from an agent. In MCP hosts, guide the user through the login tool; in terminal/headless contexts, prefer runapi auth status, RUNAPI_API_KEY, and stdin token import unless the user explicitly wants browser auth.cli_listen_required, an imported key cannot recover. Explain that it keeps its existing API access but cannot list or select listener keys. Ask the user to remove any --api-key or RUNAPI_API_KEY override and complete browser-backed login; never store the returned credential or Listen Signing Secret in .runapi.toml.Verify every requested deliverable: download every URL, require a non-empty file, and check the expected MIME type. A successful task status without the requested files is incomplete.
Make at most one evidence-backed request-shape correction, using the current command help or a structured validation error. Retry a transient transport failure once only when no task was created, no usage was billed, and replay is safe. Record a terminal service or provider failure and stop without changing the model or action.