Skip to content

Get Stablecoin Details

Use this endpoint to retrieve key details about a deployed stablecoin including contract addresses, supply stats, token metadata, and connected deployments.

Before you begin, ensure:

  • You have the stablecoinId returned from the deploy step
GET /v2/stablecoin/{stablecoinId}
get-details.sh
curl -X GET https://api.fsco.io/v2/stablecoin/{{stablecoinId}} \
-H "Authorization: Bearer $FSCO_API_KEY"
response.json
{
"stablecoin": {
"id": "{{stablecoinId}}",
"name": "My Stablecoin",
"symbol": "USDX",
"decimals": 18,
"circulatingSupply": "10000000000000000000",
"totalMinted": "15000000000000000000",
"totalBurned": "5000000000000000000",
"backingCurrency": "United States Dollar",
"backingCurrencySymbol": "$",
"factoryContractDeploymentId": "{{factoryContractDeploymentId}}",
"tokenContractDeploymentId": "{{tokenContractDeploymentId}}",
"attestationContractDeploymentId": "{{attestationContractDeploymentId}}",
"tokenContractAddress": "{{tokenContractAddress}}",
"attestationContractAddress": "{{attestationContractAddress}}"
}
}

The response includes:

  • Token name, symbol, decimals
  • Current supply stats (circulatingSupply, totalMinted, totalBurned)
  • Addresses for token and attestation contracts
  • Linked contract deployment IDs (useful for advanced integration)