GET
/
community
/
{id}
/
payment
/
over-time
curl --request GET \
  --url https://api.other.page/v1/community/{id}/payment/over-time \
  --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
any[]

The account addresses

Example:

"[\"0x5feff5aed9cff99f9f33e20f211b50035bfb3da3\",\"0xba8f13ed4c69a39192de349dd1ff7fb70aefeccf\",\"0xa5863abbae9528600e5ebf7daf2e7b99c4faed3d\",\"0x60bc02cb4ccd9cb48cb9cbcb0faf2a7beca4712f\",\"0x7dbf241bf68ab5b269afff23d58c804cfa3acf4d\"]"

orderBy
any[]

Orderby array

Example:

"[{ \"createdAt\": \"desc\" },{ \"status\": \"asc\" }, {\"usdValue\": \"asc\"}, {\"transactionHash\": \"asc\"}, {\"payer\": {\"address\": \"asc\"}}, {\"contract\": {\"tokenAddress\": \"asc\"}}]"

Response

200 - application/json
Get payments over time 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