POAPs API Examples

Show who attended @ETHLisbon 2022 and their social profiles
query AttendeesAndSocialProfiles {
  Poaps(
    input: {filter: {eventId: {_eq: "76949"}}, blockchain: ALL, limit: 10}
  ) {
    Poap {
      owner {
        identity
        primaryDomain {
          name
        }
        socials {
          profileName
          userAddress
          userAssociatedAddresses
        }
      }
    }
  }
}
what events did patricio.eth attended?
query POAPsPatricioEth {
  Poaps(
    input: {filter: {owner: {_eq: "patricio.eth"}}, blockchain: ALL, limit: 10}) 
    {
    Poap {
      eventId
      poapEvent {
        eventName
        eventURL
        startDate
        endDate
        country
        city
        contentValue {
          image {
            extraSmall
            large
            medium
            original
            small
          }
        }
      }
    }
  }
}

Last updated

#300: add-user-details

Change request updated