Maker

Batch look up makers by processor and hashed on-chain IDs (internal endpoint, requires a privileged x-api-key)

post/v2/makers/batch-lookup

Request body

Example request

{
  "requests": [
    {
      "processorName": "venmo",
      "hashes": [
        "0xabc",
        "0xdef"
      ]
    }
  ]
}

Response

Success

successboolean required
messagestring required
responseObjectobject

Map keyed by processorName|normalizedHash

statusCodenumber required
errorCodestring

Example response

{
  "responseObject": {
    "venmo|0xabc": {
      "id": 1,
      "processorName": "venmo",
      "offchainId": "alice",
      "telegramUsername": null,
      "hashedOnchainId": "0xabc",
      "isBusiness": false,
      "revoked": false,
      "metadata": null,
      "createdAt": "2025-01-01T00:00:00.000Z"
    }
  }
}

Changes