11b82cbb91
* feat(api): installable accounted-api agent skill + openapi-to-skill generator Three layers, per the July/August 2026 agent-skills ecosystem (skills.sh / npx skills add, as used by Stripe/Cloudflare/Supabase for their APIs): - skills/openapi-to-skill/: generic, installable skill that turns any OpenAPI spec into a consumer-side integration skill, with a portable stdlib-only inventory/condenser tool and an output template + quality checklist encoding the distill-not-restate methodology. - skills/accounted-api/: the installable skill for our own API, rendered deterministically by scripts/api-skill/generate.ts from the v1 endpoint registry + hand-authored overlays (auth, conventions, domain gotchas). CI gate: npm run apiskill:check (core-build.yml). - lib/api/v1/registry.ts: generateOpenApiSpec now emits requestBody (incl. multipart binary parts) and path parameters, and the Zod converter learned .default()/z.record()/.pipe()/.transform(), so the public spec carries request contracts instead of prose-only. Docs: /docs/api landing + /llms.txt now point agents at the skill install; corrected the stale test-key description in the landing (test keys read real data and force dry-run writes; they are not sandbox-company bound). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(skills): escape backslashes in markdown table cells (CodeQL js/incomplete-sanitization) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
111 lines
5.7 KiB
TypeScript
111 lines
5.7 KiB
TypeScript
import { API_V1_VERSION } from '@/lib/api/v1/version'
|
|
|
|
export const LANDING_MD = `# accounted API
|
|
|
|
> Swedish double-entry bookkeeping as a public REST API for agents and integrations. API version \`${API_V1_VERSION}\`.
|
|
|
|
The accounted API covers the financial workflows an integration needs: create invoices, ingest bank transactions, file VAT declarations, run payroll, and subscribe to webhooks for state changes. Every endpoint is designed for autonomous agents first: machine-readable schemas, dry-run previews, idempotent retries, and inline audit blocks on every write. (A few dashboard-only steps remain, e.g. generating salary payment files and sending payslips, and each cookbook calls out where one applies.)
|
|
|
|
If you've used [Stripe's API](https://docs.stripe.com/api), the shape will feel familiar: bearer-token auth, dated API versions, webhook signature verification, idempotency keys. The accounting concepts are Swedish (BAS chart, BFL retention, K2/K3, momsdeklaration) but the surface is built for the same kind of integrator.
|
|
|
|
## Authentication
|
|
|
|
All requests authenticate with a bearer token in the \`Authorization\` header:
|
|
|
|
\`\`\`bash
|
|
curl https://app.gnubok.se/api/v1/companies \\
|
|
-H "Authorization: Bearer gnubok_sk_live_..."
|
|
\`\`\`
|
|
|
|
Create keys in the accounted dashboard at **/settings/api**. Two key prefixes are available:
|
|
|
|
- \`gnubok_sk_live_*\`: hits real customer data. Use in production.
|
|
- \`gnubok_sk_test_*\`: reads real company data, but every write is forced into dry-run and nothing persists (responses carry \`X-Gnubok-Mode: test\`). Safe for evals, demos, and agent learning. Same surface, different blast radius.
|
|
|
|
Each key carries one or more **scopes** (\`invoices:read\`, \`invoices:write\`, \`payroll:write\`, \`webhooks:manage\`, ...) that gate which endpoints it can call. Scopes are listed on every endpoint reference page.
|
|
|
|
Rate limit: 100 requests per minute per key.
|
|
|
|
## Base URL
|
|
|
|
\`\`\`
|
|
https://app.gnubok.se/api/v1
|
|
\`\`\`
|
|
|
|
URLs include the company id explicitly:
|
|
|
|
\`\`\`
|
|
GET /api/v1/companies/{companyId}/invoices
|
|
POST /api/v1/companies/{companyId}/invoices
|
|
\`\`\`
|
|
|
|
A multi-company key can act on any company the underlying user is a member of: the URL is the source of truth, not a default. List the companies a key can access with:
|
|
|
|
\`\`\`bash
|
|
curl https://app.gnubok.se/api/v1/companies \\
|
|
-H "Authorization: Bearer gnubok_sk_live_..."
|
|
\`\`\`
|
|
|
|
## Core principles
|
|
|
|
These four invariants hold across the entire surface: once you've internalised them you can predict the shape of any endpoint without reading the reference.
|
|
|
|
**Dry-run on every write.** Append \`?dry_run=true\` (or send \`X-Dry-Run: true\`) to any POST/PATCH/DELETE to preview the effect: the response shows the journal lines, voucher number, account deltas, and any validation errors that would surface, but commits nothing. Use this in agent test-loops to validate inputs before paying the side-effect cost.
|
|
|
|
**Idempotency-Key on every write.** Pass a UUID in the \`Idempotency-Key\` header. Replays of the same key+body return the original response with \`Idempotent-Replayed: true\` (24h cache). Replays with a different body return \`409 IDEMPOTENCY_KEY_REUSE\`.
|
|
|
|
**Strict-mode write semantics.** A v1 mutation either commits fully or returns a structured error code with no side effects. The dashboard soft-fails on partial writes (a human is there to retry); the v1 surface aborts. This means you never see "the invoice was sent but the email failed": either both happened or neither did.
|
|
|
|
**Inline audit on every write.** Every successful write response includes an \`audit\` block in \`meta\` with the voucher number, audit-trail URL, and immutability timestamp. No second round-trip needed to confirm what happened.
|
|
|
|
## Response envelope
|
|
|
|
Every response has the same shape:
|
|
|
|
\`\`\`json
|
|
{
|
|
"data": { ... },
|
|
"meta": {
|
|
"request_id": "req_...",
|
|
"api_version": "${API_V1_VERSION}",
|
|
"next_cursor": "...",
|
|
"audit": { "voucher_number": "A-2026-042", "voucher_url": "..." }
|
|
}
|
|
}
|
|
\`\`\`
|
|
|
|
Errors return an \`error\` object instead of \`data\` (and carry no \`meta\` block — the \`request_id\` moves inside \`error\`):
|
|
|
|
\`\`\`json
|
|
{
|
|
"error": {
|
|
"code": "PERIOD_LOCKED",
|
|
"message": "Den valda perioden är låst.",
|
|
"message_en": "The selected period is locked.",
|
|
"details": { "fiscal_period_id": "..." },
|
|
"recovery_hint": "Unlock via /fiscal-periods/{id}/unlock or pick an open period.",
|
|
"docs_url": "https://app.gnubok.se/docs/api/errors/PERIOD_LOCKED",
|
|
"request_id": "req_..."
|
|
}
|
|
}
|
|
\`\`\`
|
|
|
|
Every error code is documented in the [error reference](/docs/api/errors).
|
|
|
|
## Where to go next
|
|
|
|
- **[Quickstart cookbook](/docs/api/cookbook/quickstart)**: send your first invoice in five minutes.
|
|
- **[API reference](/docs/api/reference)**: every endpoint, grouped by resource.
|
|
- **[Webhooks](/docs/api/webhooks)**: subscribe to events with HMAC-signed delivery.
|
|
- **[Errors](/docs/api/errors)**: every stable error code with remediation.
|
|
- **[Versioning](/docs/api/versioning)**: how API versions are pinned and upgraded.
|
|
- **[Changelog](/docs/api/changelog)**: what shipped when.
|
|
|
|
For LLM-based agents:
|
|
- **Agent skill for integrators**: \`npx skills add erp-mafia/accounted --skill accounted-api\` teaches your coding agent (Claude Code, Cursor, Codex, ...) this entire API: auth, conventions, and every endpoint with request/response schemas. Generated from the same registry that serves this spec, so it cannot drift.
|
|
- **[\`/llms.txt\`](/llms.txt)**: concise agent-discovery index.
|
|
- **[\`/llms-full.txt\`](/llms-full.txt)**: full docs concatenated for ingestion.
|
|
- **[\`/api/v1/openapi.json\`](/api/v1/openapi.json)**: machine-readable OpenAPI 3.1 spec.
|
|
- **[\`/.well-known/skills/index.json\`](/.well-known/skills/index.json)**: accounted-specific skill catalogue.
|
|
`
|