GET
/
api
/
v1
/
realms
/
{realmId}
/
raffles
/
{raffleId}
/
entries
curl --request GET \
  --url https://api.drip.re/api/v1/realms/{realmId}/raffles/{raffleId}/entries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "tickets": 123,
      "totalPrice": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "member": {
        "id": "<string>",
        "accountId": "<string>",
        "account": {
          "username": "<string>"
        }
      }
    }
  ],
  "meta": {
    "hasNextPage": false,
    "hasPreviousPage": false,
    "startCursor": "<string>",
    "endCursor": "<string>",
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

realmId
string
required
raffleId
string
required

Query Parameters

take
default:
25
from
string

Response

200
application/json
Default Response
data
object[]
meta
any