GET
/
admin
/
api
/
v1
/
distributions
/
{distribution_id}
cURL
curl --request GET \
  --url https://merits.blockscout.com/admin/api/v1/distributions/{distribution_id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "description": "<string>",
  "total_receivers": "<string>",
  "total_accounts_created": "<string>",
  "total_distributed": "<string>",
  "distributions": [
    {
      "address": "<string>",
      "amount": "<string>"
    }
  ],
  "distributed_at": "<string>"
}

Authorizations

Authorization
string
header
required

Authentication token, prefixed by Bearer: Bearer <token>

Path Parameters

distribution_id
string
required

Response

200
application/json

A successful response.

The response is of type object.