SDKs & client libraries | mintfax
SDKs & client libraries
mintfax is a REST/JSON API with an OpenAPI 3.1 spec. There are no official mintfax SDK packages today. You call the API directly over HTTP from any language. The spec is the contract, and every HTTP client works.
Current integration paths
| Language | How to call the API | Reference |
|---|---|---|
| Node.js | Native fetch (no npm package) | Node.js quickstart |
| Any other language | Any HTTP client, REST directly | Quickstart (curl) |
The Node.js quickstart uses node:crypto for webhook verification and native fetch for all API calls. There is no npm install mintfax step.
Generate a client from the spec
The mintfax OpenAPI 3.1 spec ships with the API. If you want a typed client stub in a language we do not have a quickstart for, run any OpenAPI-conformant generator against the spec. The spec is the authoritative description of every endpoint, parameter, and response shape.
Get started
Also useful
- Node.js quickstart: native
fetch, webhook verification, error handling - Authentication: bearer tokens, sandbox vs. live keys