Skip to main content
GET
/
allowlists
/
{allowlistId}
/
entries
Get all entries for an allowlist
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/allowlists/{allowlistId}/entries \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "entries": [
    {
      "id": "95b11417-f18f-457f-8804-68e361f9164f",
      "allowListId": "95b11417-f18f-457f-8804-68e361f9164f",
      "walletPublicKey": "<string>",
      "email": "[email protected]",
      "emailDomain": "<string>",
      "phoneNumber": "<string>",
      "discordUsername": "<string>",
      "twitterUsername": "<string>",
      "farcasterUsername": "<string>",
      "farcasterFid": 123,
      "alias": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

allowlistId
string
required
Required string length: 36
Example:

Query Parameters

orderBy
string
Example:
offset
integer
default:0
Required range: x >= 0
limit
integer
default:20
Required range: 1 <= x <= 100
query
string

Response

count
integer
entries
object[]