REST API DOCS
Client APIIssuers

Get Issuer Info

GET
/backend/api/v1/issuers/data/

Returns issuer platform data. Filter by type, platform (issuer name), or group_by.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

type?string

Filter by platform type

platform?string

Filter by issuer/platform name

group_by?string

Group results by a field

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/issuers/data/?type=Stablecoin&platform=Circle&group_by=asset_class"
{  "message": "success",  "data": [    {      "platform": "Circle",      "issuer_profile_id": 2,      "issuer_profile_name": "Circle",      "logo": "/media/issuer_logo/download_331.jpeg",      "description": "<p><span style=\"color: rgb(56, 52, 66);\">CircleCo Inc. (often referred to as Circle) is an all-in-one community software platform that allows creators, educators, and brands to host discussions, courses, memberships, and live streams under their own branding. It serves as a unified hub for audience engagement, eliminating the need to juggle multiple third-party apps</span></p>",      "web_address": "https://circle.so/",      "count": 2,      "total_value": "227341075.67",      "monthly_transfer_volume": "222522704.83",      "holders_count": 133,      "instruments": [        "Stablecoin"      ],      "networks": [        "ethereum",        "solana"      ],      "per_network": {        "ethereum": "94069202.54",        "optimism": "0.00",        "bsc": "0.00",        "polygon": "0.00",        "arbitrum": "0.00",        "avalanche": "0.00",        "base": "0.00",        "solana": "133271873.14",        "algorand": "0.00"      },      "tokens": [        {          "symbol": "USYC",          "logo": "/media/company_profile_logo/download_83.png",          "total_supply": "120989448.01",          "total_value": "120989448.01",          "networks": [            "ethereum",            "solana"          ],          "instrument": "Stablecoin",          "details": [            {              "network": "ethereum",              "price": "1.00",              "price_source": "ethereum",              "symbol": "USYC",              "total_supply": "94069202.54",              "total_value": "94069202.54"            },            {              "network": "solana",              "price": "1.00",              "price_source": "solana",              "symbol": "USYC",              "total_supply": "26920245.47",              "total_value": "26920245.47"            }          ]        },        {          "symbol": "EURC",          "logo": "/media/company_profile_logo/images_8.png",          "total_supply": "90019330.51",          "total_value": "106351627.66",          "networks": [            "solana"          ],          "instrument": "Stablecoin",          "details": [            {              "network": "solana",              "price": "1.18",              "price_source": "solana",              "symbol": "EURC",              "total_supply": "90019330.51",              "total_value": "106351627.66"            }          ]        }      ]    }  ],  "code": 200}