โ† All skills
Tencent SkillHub ยท Developer Tools

Slingdata.io API Spec

Build REST API specifications for Sling data extraction. Use when creating API specs, configuring authentication (OAuth, API key, Bearer token, HMAC), settin...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Build REST API specifications for Sling data extraction. Use when creating API specs, configuring authentication (OAuth, API key, Bearer token, HMAC), settin...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
AUTHENTICATION.md, DYNAMIC.md, ENDPOINTS.md, INCREMENTAL.md, PAGINATION.md, PROCESSORS.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

API Specifications

API specs are YAML definitions for extracting data from REST APIs. They handle authentication, pagination, response processing, and incremental sync automatically.

When to Use

Extract data from REST APIs (GET endpoints only) Build incremental sync workflows Handle complex pagination patterns Process nested JSON responses Chain multiple API calls with queues

Basic Structure

name: "My API" description: "Data extraction from My API" authentication: type: "static" headers: Authorization: "Bearer {secrets.api_token}" defaults: state: base_url: "https://api.example.com/v1" request: headers: Accept: "application/json" endpoints: users: description: "Fetch users" request: url: "{state.base_url}/users" response: records: jmespath: "data[]" primary_key: ["id"]

Parse a Spec

{ "action": "parse", "input": {"file_path": "/path/to/spec.yaml"} }

Test Endpoints

{ "action": "test", "input": { "connection": "MY_API", "endpoints": ["users"], "debug": true, "limit": 10 } }

Topics Reference

This skill includes detailed documentation for each aspect of API specification building: TopicDescriptionAUTHENTICATION.mdAll 8 authentication types (static, basic, OAuth2, AWS, HMAC, sequence)ENDPOINTS.mdEndpoint configuration, setup/teardown sequencesREQUEST.mdHTTP request configuration, rate limitingPAGINATION.mdAll pagination patterns (cursor, offset, page, link header)RESPONSE.mdRecord extraction, deduplicationPROCESSORS.mdData transformations, aggregationsVARIABLES.mdVariable scopes, expressions, rendering orderQUEUES.mdEndpoint chaining, iterationINCREMENTAL.mdSync state, context variablesDYNAMIC.mdRuntime endpoint generationFUNCTIONS.mdExpression functions referenceRULES.mdResponse rules, retries, error handling

Authentication Types

TypeUse CasestaticAPI key, Bearer tokenbasicUsername/passwordoauth2OAuth 2.0 flows (client_credentials, authorization_code, device_code)aws-sigv4AWS serviceshmacCrypto exchanges, custom signingsequenceMulti-step custom auth

Pagination Patterns

PatternExampleCursorstarting_after, page_tokenOffsetoffset + limitPagepage numberLink headerGitHub-style rel="next"

Variable Scopes

ScopeDescriptionsecrets.*Credentials from connectionstate.*Endpoint state variablessync.*Persisted from previous runresponse.*HTTP response datarecord.*Current record in processorqueue.*Endpoint chaining

Full Documentation

See https://docs.slingdata.io/concepts/api-specs.md for complete reference.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • AUTHENTICATION.md Docs
  • DYNAMIC.md Docs
  • ENDPOINTS.md Docs
  • INCREMENTAL.md Docs
  • PAGINATION.md Docs
  • PROCESSORS.md Docs