Skip to content

Get Attestation Details

Use this endpoint to retrieve a complete view of a mint or burn attestation. It returns all metadata including involved wallets, amounts, status, timestamps, documents, and execution results.

Before you begin, ensure:

  • You have both the stablecoinId and the attestationId
GET /v2/stablecoin/{stablecoinId}/attestation/{attestationId}
get-attestation.sh
curl -X GET https://api.fsco.io/v2/stablecoin/{{stablecoinId}}/attestation/{{attestationId}} \
-H "Authorization: Bearer $FSCO_API_KEY"
get-attestation-response.json
{
"id": "{{attestationId}}",
"type": "mint",
"status": "verified",
"amount": "1000000000000000000",
"submitterWalletId": "{{walletId}}",
"verifierWalletId": "{{walletId}}",
"transactionHash": "0xabc123...",
"transactionReference": "WIRE-REF-2025-001",
"transactionDate": "2025-05-08T12:00:00Z",
"createdAt": "2025-05-08T12:01:00Z",
"verifiedAt": "2025-05-08T12:05:00Z",
"usedAt": "2025-05-08T12:07:00Z",
"additionalNotes": "USDC treasury deposit received",
"documents": [
{
"blobId": "{{blobId}}"
}
]
}

The response includes:

  • Attestation metadata (type, amount, status)
  • Lifecycle timestamps (created, verified, executed)
  • Associated wallets: submitter, verifier, signer
  • Transaction metadata including transactionReference, transactionHash, and attached documents