What's New This Week: Updated 2026-03-07 09:16:04 UTC
Reliability and launch-readiness improvements shipped this week across preflight guards, release gating, and operator dashboards.
Open full release notes

API Getting Started Wizard

Walkthrough for key setup, signature validation, and first-call smoke tests.

JSON

Step 1: Create/verify API key

Ensure partner key is active and has required scopes.

Step 2: Validate request signing

Generate signed headers with the helper script before sending mutating requests.

python flask_api/scripts/sign_partner_request.py --base-url https://vets-coin.com --method POST --path /api/partner/capabilities --key-id "<KEY_ID>" --secret "<SECRET>" --json '{"capability":"claims"}' --print-only

Step 3: Run first call smoke

Call a public health endpoint to verify network/TLS/base URL.

curl -sS "https://vets-coin.com/api/public/system-status" | jq '.status.overall'