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

Array of objects

No

Information about sweeping wallets used for issuance

redeem

Object

No

Information about sweeping wallet use for redemption

Issue and Redeem attributes

address

String

No

Sweeping wallet address

token

Object

Yes

Information about sweeping wallet’s associated token

Token attributes

name

String

No

Name of the token

symbol

String

No

Symbol of the token

networks

Array of strings

No

List of supported networks

Last updated