TopRank Skills

Home / Claw Skills / Release / zyla-api-hub-skill
Official OpenClaw rules 36%

zyla-api-hub-skill

Zyla API Hub Skill — Turn your OpenClaw AI agent into a real-world operator. Power it with 10,000+ production-ready APIs from Zyla API Hub — instant access to weather, finance, translation, email validation, geolocation, and more.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
alebrega/zyla-api-hub-skill
Author
alebrega
Source Repo
openclaw/skills
Version
-
Source Path
skills/alebrega/zyla-api-hub-skill
Latest Commit SHA
f0b33a634f0208e68d1d8059214163a0bd098863

Extracted Content

SKILL.md excerpt

# Zyla API Hub Skill

Turn your OpenClaw AI agent into a real-world operator.
Power it with 10,000+ production-ready APIs from Zyla API Hub — instant access to weather, finance, translation, email validation, geolocation, and more, all through one unified API key, pay-as-you-go pricing, and zero vendor lock-in.

## Setup

If `ZYLA_API_KEY` is not configured, guide the user:

1. Visit https://zylalabs.com/openclaw/connect to get an API key
2. Or run `/zyla connect` if the plugin is installed (opens browser automatically)
3. Add the key to `~/.openclaw/openclaw.json` under `skills.entries.zyla-api-hub-skill.apiKey`

Never ask the user to paste their API key in chat. Ask them to set it via the config and confirm when ready.

## Quick Start — Popular APIs

Use these directly without searching the catalog. Each includes the API ID, endpoint details, and parameters.

<!-- POPULAR_APIS_START -->
<!-- This section is auto-generated by: npx tsx scripts/generate-popular.ts -->
<!-- Run before publishing to update with the latest top 20 APIs by popularity -->

### Weather by Zip API (ID: 781)
- **Use when**: user asks about weather, temperature, forecast, climate, conditions by zip code
- **Category**: Weather & Environment
- **Call**: `npx tsx {baseDir}/scripts/zyla-api.ts call --api 781 --endpoint <endpoint_id> --params '{"zip":"10001"}'`

### Currency Conversion API (example)
- **Use when**: user asks about currency exchange, conversion rates, forex
- **Category**: Finance
- **Call**: `npx tsx {baseDir}/scripts/zyla-api.ts call --api <id> --endpoint <endpoint_id> --params '{"from":"USD","to":"EUR","amount":"100"}'`

### Email Validation API (example)
- **Use when**: user asks to validate, verify, or check an email address
- **Category**: Data Validation
- **Call**: `npx tsx {baseDir}/scripts/zyla-api.ts call --api <id> --endpoint <endpoint_id> --params '{"email":"test@example.com"}'`

> **Note**: Run `npx tsx {baseDir}/scripts/generate-popular.ts` to regenerate this section...

README excerpt

# Zyla API Hub Skill for OpenClaw

Turn your OpenClaw AI agent into a real-world operator.
Power it with 10,000+ production-ready APIs from [Zyla API Hub](https://zylalabs.com) — instant access to weather, finance, translation, email validation, geolocation, and more, all through one unified API key, pay-as-you-go pricing, and zero vendor lock-in.

## Installation

```bash
openclaw plugins install @zyla-labs/zyla-api-hub
```

Or install via ClawHub:

```bash
clawhub install zyla-api-hub-skill
```

## Quick Setup

### Option A: Automatic (recommended)

1. Type `/zyla connect` in your OpenClaw chat
2. Browser opens to Zyla API Hub — register or log in
3. API key is captured automatically and saved to your config
4. Done! Start using APIs immediately.

### Option B: Manual

1. Visit [https://zylalabs.com/openclaw/connect](https://zylalabs.com/openclaw/connect)
2. Register or log in
3. Copy your API key
4. Add to `~/.openclaw/openclaw.json`:

```json
{
  "skills": {
    "entries": {
      "zyla-api-hub-skill": {
        "enabled": true,
        "apiKey": "YOUR_API_KEY_HERE",
        "env": {
          "ZYLA_API_KEY": "YOUR_API_KEY_HERE"
        }
      }
    }
  }
}
```

## Usage

Just ask your agent naturally:

- "What's the weather in New York?"
- "Convert 100 USD to EUR"
- "Validate this email: test@example.com"
- "Find me a recipe API"

### Slash Commands

| Command | Description |
|---------|-------------|
| `/zyla connect` | Link your Zyla account (opens browser) |
| `/zyla status` | Check plan and usage stats |

### CLI Scripts

```bash
# Search for APIs
npx tsx scripts/zyla-catalog.ts search "weather"

# Call an API
npx tsx scripts/zyla-api.ts call --api 781 --endpoint 1234 --params '{"zip":"10001"}'

# Check health
npx tsx scripts/zyla-api.ts health
```

## Pricing

**Pay-as-you-go** — no monthly fee. You only pay per API call based on each API's rate. Billing happens at the end of each cycle via Stripe.

## Updating Popular APIs

The SKILL.md includes a "Popul...

Related Claw Skills