Guides

Get POAP event

The POAP event endpoint allows you to retrieve detailed information about a specific event associated with a POAP (Proof of Attendance Protocol).

Request

PoapEventQueryRequest

Invocation

const result = await client.poaps.event({
  eventId: "EVENT_ID",
});
fragment PoapEvent on PoapEvent {
  id
  fancyId
  name
  eventUrl
  imageUrl
  country
  city
  description
  year
  startDate
  endDate
  expiryDate
  virtualEvent
  fromAdmin
  animationUrl
  eventTemplateId
  privateEvent
}

query PoapEvent($request: PoapEventQueryRequest!) {
  result: poapEvent(request: $request) {
    ...PoapEvent
  }
}

Response

PoapEvent