Skip to main content
GET
/
get-dividend-distribution
Get Dividend Distribution Info
curl --request GET \
  --url https://api.sandbox.brickken.com/get-dividend-distribution \
  --header 'x-api-key: <api-key>'
{
  "distributions": [
    {
      "amount": "<string>",
      "timestamp": 123,
      "tokenSymbol": "<string>"
    }
  ]
}
Retrieves information about dividend distributions for a token.

Query Parameters

  • tokenSymbol (required): Token symbol

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-dividend-distribution?tokenSymbol=EXMPL' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "distributions": [
    {
      "amount": "1000",
      "timestamp": 1234567890,
      "tokenSymbol": "USDT"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The symbol of the token.

Response

200 - application/json

Successful response

distributions
object[]