One API for secure verification.

MOTHQ Verification allows you to generate temporary, secure verification links and QR codes instantly. Integrate our API to verify users and transactions with confidence.

Enter your API Key below. This text will automatically populate all code examples on this page.

Detected Domain: ...

Create Verification Link

Generate a new verification session. The returned link is valid for 120 seconds.

POST /api/make-qrcode

Request Parameters

Parameter Type Description
api_key * string Your unique API credential for authentication.
curl -X POST \
  DOMAIN/api/make-qrcode \
  -H 'Content-Type: application/json' \
  -d '{
    "api_key": "YOUR_API_KEY"
  }'

Error Responses

Failed requests will return a JSON object with status: false, a standard status_code, and a descriptive message.

1. No Active Subscription

Occurs when the store associated with the API Key does not have a valid subscription.

{
  "status": false,
  "status_code": 403,
  "data": null,
  "message": "Store does not have an active subscription"
}

2. Store Not Found

Occurs when the API Key provided does not match any existing store.

{
  "status": false,
  "status_code": 404,
  "data": null,
  "message": "Store not found"
}

3. Store Under Review

Occurs when the store account is still pending approval by the administration.

{
  "status": false,
  "status_code": 403,
  "data": null,
  "message": "Store is under review"
}