Claude Code Plugins

Community-maintained marketplace

Feedback

Use when making Weavr API calls for corporates, consumers, cards, accounts, transfers, or KYC/KYB

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name weavr-api
description Use when making Weavr API calls for corporates, consumers, cards, accounts, transfers, or KYC/KYB

Weavr Multi API

API Reference: https://weavr-multi-api.redoc.ly/

Quick Start

// Create a Corporate - POST /multi/corporates
// Headers: api-key, programme-key, Content-Type: application/json
{
  "rootUser": { "name": "John", "surname": "Smith", "email": "john@acme.com",
    "mobile": { "countryCode": "+44", "number": "7700900123" },
    "companyPosition": "DIRECTOR", "dateOfBirth": { "year": 1985, "month": 6, "day": 15 }
  },
  "company": { "type": "LLC", "name": "Acme Ltd", "registrationNumber": "12345678",
    "registrationCountry": "GB", "businessAddress": { "addressLine1": "123 High St",
    "city": "London", "postCode": "EC1A 1BB", "country": "GB" }
  },
  "baseCurrency": "GBP"
}

Core Endpoints

  • Identity: /multi/corporates, /multi/consumers, /{id}/kyb/start, /{id}/kyc/start
  • Auth: /multi/passwords/login_with_password, /multi/authentication/step-up
  • Instruments: /multi/managed_accounts, /multi/managed_cards
  • Transfers: /multi/transfers, /multi/sends, /multi/outgoing_wire_transfers

Authentication

Headers: api-key (server), programme-key (programme), Authorization: Bearer (user)

Reference Files

See references/endpoints.md for full endpoint details.