Skip to main content
Version: v0.9

List Payments

GET
/v0/payments

Retrieves a list of payments. Results can be filtered by status, date range, and other parameters.

Query Parameters

ParameterTypeDescription
status optionalstringFilter by payment status. Options: pending, confirming, completed, expired, failed.
blockchain optionalstringFilter by blockchain. Options: ETH, BSC, BTC, TRX.
custom_id optionalstringFilter by custom ID.
created_from optionalstringFilter by creation date (from). ISO 8601 format.
created_to optionalstringFilter by creation date (to). ISO 8601 format.
page optionalintegerPage number for pagination. Default: 1.
per_page optionalintegerNumber of results per page. Default: 10. Maximum: 50.

Example Request

GET /v0/payments?status=completed&blockchain=ETH&page=1&per_page=10
X-API-Key: your_api_key_here

Response Parameters

Root

ParameterTypeDescription
dataarrayArray of payment objects.
metaobjectPagination metadata.

Payment Object

ParameterTypeDescription
payment_idstringUnique identifier for the payment.
statusstringCurrent status of the payment.
crypto_amountnumberThe amount of cryptocurrency to be paid.
addressstringThe cryptocurrency address for the payment.
tokenstringThe cryptocurrency token (USDT for ETH/BSC/TRX, BTC for Bitcoin).
blockchainstringThe blockchain network used.
custom_idstringYour custom identifier for the payment, if provided.
created_atstringISO 8601 timestamp indicating when the payment was created.
updated_atstringISO 8601 timestamp indicating when the payment was last updated.

Meta Object

ParameterTypeDescription
current_pageintegerCurrent page number.
total_pagesintegerTotal number of pages.
total_countintegerTotal number of payments matching the filter criteria.
per_pageintegerNumber of results per page.

Example Response

{
"error": "deprecated_endpoint",
"message": "This API endpoint is deprecated in v0.9 and no longer functional. Please use the v1.0 API endpoints instead.",
"request_id": "req_v09_list_deprecated"
}

Error Codes

Status CodeError CodeDescription
400invalid_parametersOne or more of the provided parameters are invalid.
401authentication_failedAuthentication failed. Check your API key.
410deprecated_endpointThis endpoint is deprecated in v0.9 and no longer functional. Please use the v1.0 API.
429rate_limit_exceededYou have exceeded the rate limit.
500internal_errorAn internal server error occurred. Contact support if this persists.

Notes

Important: This API endpoint is deprecated in v0.9 and will always return an error response. Please upgrade to the v1.0 API for current functionality.

  • This endpoint is no longer functional in v0.9 as the API has been deprecated.
  • All requests to this endpoint will receive the error response shown above.
  • To continue using the Cryptofuse API, please upgrade to the v1.0 API endpoints.