GET
/
community
/
{id}
/
payment
curl --request GET \
  --url https://api.other.page/v1/community/{id}/payment \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": "<string>",
    "communityId": "<string>",
    "transactionHash": "<string>",
    "status": "pending",
    "confirmations": 123,
    "chainId": "<string>",
    "contract": "<string>",
    "quantity": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Query Parameters

cursor
string

The cursor for pagination

Example:

""

take
number

The number of records to take

Example:

10

amountGte
number

The minimum amount

Example:

10

amountLte
number

The maximum amount

Example:

1000

status
string

The payment status

Example:

"SUCCESS"

startDate
string

The start date

Example:

"2024-01-01"

endDate
string

The end date

Example:

"2024-12-31"

chainId
string

The chain identifier

Example:

"11155111"

addresses
string[]

The account addresses

orderBy
string[]

Orderby array

Response

200 - application/json
All payments retrieved successfully
id
string
required
communityId
string
required
transactionHash
string
required
status
enum<string>
required
Available options:
pending,
confirmed,
failed
confirmations
number
required
chainId
string
required
contract
string
required
quantity
string
required
createdAt
string
required
updatedAt
string
required