Get transaction receipt
curl --request GET \
--url https://aropay.aro.media/api/v1/transactions/{id}/nota \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aropay.aro.media/api/v1/transactions/{id}/nota', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aropay.aro.media/api/v1/transactions/{id}/nota"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"ok": true,
"data": {
"filename": "aropay-receipt-cktxn0004abcd.nota",
"nota": "…serialized Notareum receipt…"
}
}{
"ok": false,
"error": {
"code": "receipt_unavailable",
"message": "This transaction failed before it was submitted; there is no on-chain receipt.",
"details": {
"status": "FAILED",
"retryable": false
}
}
}{
"ok": false,
"error": {
"code": "invalid_api_key",
"message": "Invalid API key."
}
}{
"ok": false,
"error": {
"code": "account_disabled",
"message": "This account is disabled."
}
}{
"ok": false,
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"ok": false,
"error": {
"code": "receipt_unavailable",
"message": "The transaction has not been submitted yet; retry shortly.",
"details": {
"status": "QUEUED",
"retryable": true
}
}
}{
"ok": false,
"error": {
"code": "rate_limited",
"message": "Too many requests. Try again shortly."
}
}{
"ok": false,
"error": {
"code": "internal_error",
"message": "An unexpected error occurred."
}
}Transactions
Get transaction receipt
Produce a notarized Notareum receipt (.nota file) for a transaction
that reached the chain. A pure database read. While the transaction
is still in flight without a hash (QUEUED) the endpoint returns
409 receipt_unavailable with details.retryable: true; retry once
it is submitted. A transaction that FAILED before anything was
submitted has no receipt and returns 400 receipt_unavailable with
details.retryable: false.
GET
/
transactions
/
{id}
/
nota
Get transaction receipt
curl --request GET \
--url https://aropay.aro.media/api/v1/transactions/{id}/nota \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aropay.aro.media/api/v1/transactions/{id}/nota', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aropay.aro.media/api/v1/transactions/{id}/nota"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"ok": true,
"data": {
"filename": "aropay-receipt-cktxn0004abcd.nota",
"nota": "…serialized Notareum receipt…"
}
}{
"ok": false,
"error": {
"code": "receipt_unavailable",
"message": "This transaction failed before it was submitted; there is no on-chain receipt.",
"details": {
"status": "FAILED",
"retryable": false
}
}
}{
"ok": false,
"error": {
"code": "invalid_api_key",
"message": "Invalid API key."
}
}{
"ok": false,
"error": {
"code": "account_disabled",
"message": "This account is disabled."
}
}{
"ok": false,
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"ok": false,
"error": {
"code": "receipt_unavailable",
"message": "The transaction has not been submitted yet; retry shortly.",
"details": {
"status": "QUEUED",
"retryable": true
}
}
}{
"ok": false,
"error": {
"code": "rate_limited",
"message": "Too many requests. Try again shortly."
}
}{
"ok": false,
"error": {
"code": "internal_error",
"message": "An unexpected error occurred."
}
}Authorizations
apiKeyAuthsessionCookie
AroPay API key, sent as Authorization: Bearer aro_sk_…. Created in
the dashboard under Settings → API keys. Takes precedence over a
session cookie when both are present.
Path Parameters
Transaction ID.