Soltinel API
Back to Home

API Documentation

This API provides access to the Solana blacklist data maintained by the Meteora Operations team.

Endpoints

GET /api/blacklist

GET

Get blacklisted Solana wallet addresses from the Kelsier addresses list

Parameters

NameTypeRequiredDefaultDescription
searchstringNo-Filter results by address or reason
pagenumberNo1Page number for pagination
limitnumberNo20Number of results per page
lastUpdatedbooleanNofalseInclude 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).