ToolsXpo

Math

Karnaugh Map Solver API

GET request to /v1/kmap-solver, returning json in the standard envelope.

GET/v1/kmap-solver2 credits / call Free tier

Authentication

Send your API key as a bearer token. Create one free in the dashboard.

Authorization: Bearer $TOOLSXPO_KEY

Parameters

Sent as query-string parameters. The values below are the examples used throughout this page.

NameExample value
variableCount4
minterms0, 1, 2, 5, 8, 9, 10

Example request

curl "https://api.toolsxpo.com/v1/kmap-solver?variableCount=4&minterms=0%2C%201%2C%202%2C%205%2C%208%2C%209%2C%2010" \
  -H "Authorization: Bearer $TOOLSXPO_KEY"

Response

Every endpoint answers with the same envelope. The result is in data (json); meta.credits reports what the call cost.

{
  "ok": true,
  "data": { /* json */ },
  "meta": { "credits": 2 }
}

Errors

Failures use the same envelope with ok: false and a machine-readable code.

StatusCodeMeaning
400invalid_inputA parameter failed validation. `details` lists which.
401unauthorizedMissing or invalid API key.
402quota_exceededOut of credits on this workspace.
404not_foundNo such tool.
429rate_limitedToo many requests. Retry after `Retry-After` seconds.
503service_unavailableTemporarily disabled by an administrator.