Jump to related tools in the same category or review the original source on GitHub.

Speech & Transcription @truefoobar Updated 1/30/2026

Easyverein Api OpenClaw Plugin & Skill | ClawHub

Looking to integrate Easyverein Api into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate speech & transcription tasks instantly, without having to write custom tools from scratch.

What this skill does

Work with the easyVerein v2.0 REST API (members, contacts, events, invoices, bookings, custom fields, etc.). Use for full API coverage: endpoint discovery, auth, request/response schemas, and example cURL calls.

Install

npx clawhub@latest install easyverein-api

Full SKILL.md

Open original
Metadata table.
namedescription
easyverein-apiWork with the easyVerein v2.0 REST API (members, contacts, events, invoices, bookings, custom fields, etc.). Use for full API coverage: endpoint discovery, auth, request/response schemas, and example cURL calls.

SKILL.md content below is scrollable.

easyVerein API (v2.0)

Quick start

  • Base URL: https://easyverein.com/api/v2.0
  • Auth header: Authorization: Bearer <API_KEY>
  • Tokens expire after 30 days; refresh via GET /api/v2.0/refresh-token when tokenRefreshNeeded appears in response headers.
  • Rate limit: 100 requests/min.

Use the OpenAPI spec

Read the full spec when you need endpoint details or schemas:

  • references/openapi-v2.json

This file contains all endpoints, parameters, request bodies, responses, and tags. Use it to:

  • list endpoints by tag (e.g., member, contact-details, invoice)
  • inspect request body schemas
  • find actions and sub-endpoints

Common patterns

  • Pagination: ?limit= (default 5, max 100)
  • Field selection: ?query={field,relation{subfield}}
  • Excluding fields: ?query={-field}
  • Bulk operations: bulk-create / bulk-update (supported by select endpoints)

Example cURL (template)

curl -s \
  -H "Authorization: Bearer $EASYVEREIN_TOKEN" \
  -H "Content-Type: application/json" \
  "https://easyverein.com/api/v2.0/member?limit=10"

Member creation flow (important)

  1. Create contact-details first.
  2. Then create member with emailOrUserName and contactDetails reference.

Notes

  • Files must be uploaded via PATCH with Content-Disposition header.
  • Use refresh-token to rotate tokens; old token becomes invalid immediately.
Original Repository URL: https://github.com/openclaw/skills/blob/main/skills/truefoobar/easyverein-api
Latest commit: https://github.com/openclaw/skills/commit/0c61d3bd8bf34c386725ae018a8723d25c7e90a4

Related skills

If this matches your use case, these are close alternatives in the same category.