Factuarea API

Support

How to reach the Factuarea API team, what to include when reporting an issue, beta status, the status page and the changelog.

The Factuarea public API is in private beta, and beta participants get priority support during this period. This page is the single source of truth for how to reach us and what to send.

Contact

Write from the email associated with your company in Factuarea. For beta access requests specifically, follow the Request beta access checklist (legal name, tax ID, use case, estimated volume) — we respond within ≤ 5 business days.

What to include when reporting an issue

Every API response carries a unique request_id (in the error envelope under error.request_id, and in the X-Request-Id response header). It is the single most useful thing you can send us — it lets us correlate logs, metrics and traces to investigate quickly.

{
  "error": {
    "type": "invalid_request_error",
    "code": "parameter_invalid",
    "message": "El campo client_id es obligatorio.",
    "request_id": "req_01HKQS5N8VR7QXJ9K3T6BWPMZA"
  }
}

A good report includes:

  • request_id of the failing call (or several, if it's intermittent).
  • HTTP status and the type / code from the error envelope.
  • Endpoint and method — e.g. POST /v1/invoices.
  • Environmentlive or test (the prefix of the key you used, fact_live_ or fact_test_). Never paste the key secret itself.
  • What you expected vs. what happened, and the approximate timestamp.

Never share an API key secret in a support email. Send the request_id — we can find the key and request from that alone. If a secret has been exposed, rotate or revoke the key from the dashboard first.

A subject line that already carries the essentials helps us triage:

422 on POST /v1/invoices — request_id req_01JBVH7K9Y4N3CDQ2EHJB1AGSV

Beta status

During the private beta:

  • Only companies on the allowlist can generate developer-scoped keys.
  • Beta participants receive priority support and early notice of changes.
  • The program closes once we reach full coverage of public endpoints and a stable uptime SLO (≥ 99.9%), at which point the API graduates to GA and activation becomes self-service. See Request beta access.

Status page

A public status page (uptime and incident history) will live at status.factuarea.com once the API reaches GA. Until then, we notify beta participants of incidents and planned maintenance directly by email to keys' registered contacts.

Changelog

Every /v1 change — new fields, new endpoints, new events, validation fixes and deprecations — is published in the Changelog. Breaking changes never land in /v1; they only appear in a future /v2. See Versioning for the stability commitment.

Self-service first

Before opening a ticket, these usually answer the question faster:

  • FAQ — the most common integration questions.
  • Errors — look up your code for the cause and fix.
  • Authentication — keys, scopes, rotation.
  • Rate limits — quotas and back-off.

On this page