zyla-api-hub-skill

Review·Scanned 2/17/2026

This skill connects an OpenClaw agent to Zyla API Hub and provides CLI and plugin tools to call external APIs. It reads and writes the ZYLA_API_KEY, opens http://127.0.0.1 for OAuth callbacks, and instructs running npx tsx scripts and editing ~/.openclaw/openclaw.json.

from clawhub.ai·va8c6c38·56.5 KB·0 installs
Scanned from 1.0.7 at a8c6c38 · Transparency log ↗
$ vett add clawhub.ai/alebrega/zyla-api-hub-skillReview findings below

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 — 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

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

Or install via ClawHub:

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
  2. Register or log in
  3. Copy your API key
  4. Add to ~/.openclaw/openclaw.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

CommandDescription
/zyla connectLink your Zyla account (opens browser)
/zyla statusCheck plan and usage stats

CLI Scripts

# 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 "Popular APIs" section with the top 20 APIs embedded for instant access. To regenerate it from the live catalog:

npx tsx scripts/generate-popular.ts

Then paste the output between the <!-- POPULAR_APIS_START --> and <!-- POPULAR_APIS_END --> markers in SKILL.md.

Development

cd openclaw-skill
npm install
npm run catalog    # Test catalog browsing
npm run api        # Test API calls

License

MIT