Back to Registry View Author Profile
Official Verified
easyverein-api
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.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/truefoobar/easyverein-apiOr
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-tokenwhentokenRefreshNeededappears 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)
- Create
contact-detailsfirst. - Then create
memberwithemailOrUserNameandcontactDetailsreference.
Notes
- Files must be uploaded via PATCH with
Content-Dispositionheader. - Use
refresh-tokento rotate tokens; old token becomes invalid immediately.
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-truefoobar-easyverein-api": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.