Check Real-time Payment & Confirmation Status
curl --request GET \
--url https://app.papelship.com/api/api-store/v1/payment-links/check \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.papelship.com/api/api-store/v1/payment-links/check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/api-store/v1/payment-links/check"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/api-store/v1/payment-links/check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.papelship.com/api/api-store/v1/payment-links/check"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"payment": {
"invoice_id": "aB9xK12Lp9012345678901234",
"status": "paid",
"is_paid": true,
"amount": 49.99,
"currency": "USD",
"payment_method": "crypto_ltc",
"customer_email": "buyer@example.com",
"redirect_url": "https://yourdomain.com/checkout/success",
"paid_at": "2026-08-08T02:15:00.000Z",
"created_at": "2026-08-08T02:10:00.000Z",
"expires_at": "2026-08-09T02:10:00.000Z",
"crypto_details": {
"coin": "LTC",
"network": "LTC MAINNET",
"address": "Ltc1q99a812bf00192837410293847561928374",
"crypto_amount": 0.584795,
"confirmations": 2,
"required_confirmations": 2,
"tx_hash": "a1075db55d416d3ca199f55b603e87854619"
}
}
}Payment Status
Check Real-time Payment & Confirmation Status
Verifies real-time status, paid timestamp, payment method, block confirmations, transaction hash, and return URL status.
GET
/
api
/
api-store
/
v1
/
payment-links
/
check
Check Real-time Payment & Confirmation Status
curl --request GET \
--url https://app.papelship.com/api/api-store/v1/payment-links/check \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.papelship.com/api/api-store/v1/payment-links/check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/api-store/v1/payment-links/check"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/api-store/v1/payment-links/check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.papelship.com/api/api-store/v1/payment-links/check"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"payment": {
"invoice_id": "aB9xK12Lp9012345678901234",
"status": "paid",
"is_paid": true,
"amount": 49.99,
"currency": "USD",
"payment_method": "crypto_ltc",
"customer_email": "buyer@example.com",
"redirect_url": "https://yourdomain.com/checkout/success",
"paid_at": "2026-08-08T02:15:00.000Z",
"created_at": "2026-08-08T02:10:00.000Z",
"expires_at": "2026-08-09T02:10:00.000Z",
"crypto_details": {
"coin": "LTC",
"network": "LTC MAINNET",
"address": "Ltc1q99a812bf00192837410293847561928374",
"crypto_amount": 0.584795,
"confirmations": 2,
"required_confirmations": 2,
"tx_hash": "a1075db55d416d3ca199f55b603e87854619"
}
}
}Authorizations
BearerAuthApiKeyAuth
Pass your secret API key formatted as: Authorization: Bearer psa_...
Query Parameters
The unique invoice ID string
Example:
"aB9xK12Lp9012345678901234"