API Documentation
This API provides access to the Solana blacklist data maintained by the Meteora Operations team.
Endpoints
GET /api/blacklist
GETGet blacklisted Solana wallet addresses from the Kelsier addresses list
Parameters
Name | Type | Required | Default | Description |
---|---|---|---|---|
search | string | No | - | Filter results by address or reason |
page | number | No | 1 | Page number for pagination |
limit | number | No | 20 | Number of results per page |
lastUpdated | boolean | No | false | Include information about when the address list was last updated |
Example Request
GET /api/blacklist?search=dethective&page=1&limit=10&lastUpdated=true
Example Response
{
"total": 14,
"page": 1,
"limit": 10,
"totalPages": 2,
"data": [
{
"address": "DefcyKc4yAjRsCLZjdxWuSUzVohXtLna9g22y3pBCm2z",
"reason": "credit to @dethective on Twitter"
},
{
"address": "Gr3eiFhPfLAaA4SSHYqan8hcBB9dHLxRC176tfRtS4eb",
"reason": "credit to @dethective on Twitter"
}
],
"lastUpdated": {
"date": "2023-04-20T15:30:45.123Z",
"formatted": "April 20, 2023, 03:30 PM",
"relativeTime": "2 days ago"
}
}
Rate Limiting
To ensure fair usage, the API implements caching and may have rate limits applied. Please be considerate with your API calls.
Data Source
The data is sourced from the Meteora Operations GitHub repository (kelsier_addresses.csv).