Backed API

The first version of the Backed API allows users to fetch the sweeping wallets to issue and redeem without accessing the UI.

Find below

  1. Log into your account - - https://app.backed.fi

  2. Generate API Key

  3. Keep your API Key secure- NOTE: We do not take responsibility for compromised API Keys.

  4. Use your API Key to access our API to fetch your sweeping wallets.

Example curl request

curl --request GET 'https://api.backed.fi/api/v1/client/sweepingWallets' \
--header 'X-API-KEY: ${CLIENT_API_KEY}'

Example curl response

{
    "issue": [
        {
            "address": "0x5f21e8d593b775f24b2143b926e7116d3e24c658",
            "token": {
                "name": "Backed CSPX Core S&P 500",
                "symbol": "Backed CSPX Core S&P 500",
                "networks": [
                    "Ethereum",
                    "Polygon"
                ]
            }
        },
        {
            "address": "0x316ed630d30816b246b83ea3535938a1fc1be2a5",
            "token": {
                "name": "Backed IBTA $ Treasury Bond 1-3yr",
                "symbol": "Backed IBTA $ Treasury Bond 1-3yr",
                "networks": [
                    "Polygon",
                    "Ethereum"
                ]
            }
        }
    ],
    "redeem": {
        "address": "0x499ca77f59f760a6da5e30c0b591e6045805c2d1"
    }
}

Response explained

Issue and Redeem attributes

Token attributes

Last updated