GET
/
environments
/
{environmentId}
/
visitors
Authorization
Path
Query
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/environments/{environmentId}/visitors \
  --header 'Authorization: <authorization>'
{
  "count": 123,
  "visitors": [
    {
      "address": "<string>",
      "chain": "ETH",
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "95b11417-f18f-457f-8804-68e361f9164f",
      "projectEnvironmentId": "95b11417-f18f-457f-8804-68e361f9164f",
      "provider": "browserExtension",
      "walletName": "<string>"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

environmentId
string
required

ID of the environment

Query Parameters

filter
object
orderBy
string

$COLUMN_NAME-asc|desc

offset
integer
default: 0

The number of items to skip before starting to collect the result set

limit
integer
default: 20

The numbers of items to return

Response

200 - application/json
count
integer
visitors
object[]