Skip to main content

Quickstart

Last verified (UTC): 2026-03-06T00:00:00Z

This quickstart walks through the standalone proof-of-control path in a few minutes and ends with evidence retrieval for the audit-ready case file. External Travel Rule provider adapters are not part of this base quickstart.

Prerequisites

  • An API key from Fololo support.
  • A wallet address on a supported chain.

1. Create a challenge

curl -X POST https://iris.stg.fololo.io/api/v1/challenges \
-H "Authorization: Bearer <api-key>" \
-H "Content-Type: application/json" \
-d '{ "walletAddress": "0x...", "blockchainNetwork": "ethereum" }'

2. Verify the signature

curl -X POST https://iris.stg.fololo.io/api/v1/verify \
-H "Authorization: Bearer <api-key>" \
-H "Content-Type: application/json" \
-d '{ "challengeId": "cha_123", "signature": "0x...", "walletAddress": "0x..." }'

3. Retrieve evidence

curl -X GET https://iris.stg.fololo.io/api/v1/verifications/ver_123/evidence \
-H "Authorization: Bearer <api-key>"

When the evidence status is ready, follow the download URL in the response.