curl --request GET \
--url https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Api-Secret: <x-api-secret>'import requests
url = "https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued"
headers = {
"X-Api-Key": "<x-api-key>",
"X-Api-Secret": "<x-api-secret>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Api-Key': '<x-api-key>', 'X-Api-Secret': '<x-api-secret>'}
};
fetch('https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>",
"X-Api-Secret: <x-api-secret>"
],
]);
$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://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
req.Header.Add("X-Api-Secret", "<x-api-secret>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued")
.header("X-Api-Key", "<x-api-key>")
.header("X-Api-Secret", "<x-api-secret>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<x-api-key>'
request["X-Api-Secret"] = '<x-api-secret>'
response = http.request(request)
puts response.read_body{
"success": true,
"status_code": 200,
"message": "Success",
"records": [
{
"address_line": "742 Evergreen Terrace",
"amount": 150,
"card_nick_name": "Employee Performance Bonus",
"card_number": "**5426",
"city": "Austin",
"country": "US",
"created_at": "2026-02-12T10:15:30Z",
"first_name": "Michael",
"last_name": "Anderson",
"payee_card_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
"payee_id": "c9b1f3b2-8d9a-4f1b-a9e5-6a77f0b12345",
"request_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
"state": "TX",
"status": "approved",
"zip": "78701"
}
],
"totalRecords": 0,
"queryGeneratedTime": 1778161546
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}List Paywint Cards
Returns a list of Payee’s Paywint Cards issued by the user.
This endpoint retrieves all paywint card requests created by the issuing account, including associated card details when available.
For approved paywint card requests, the last 4 digits of the card number are provided
in the response, with leading ** to mask the full number. Example: **1234.
Each record includes:
- Payee’s paywint card request information
- Current status
- Initial funded amount
- Payee details
- Linked card details (if approved)
curl --request GET \
--url https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Api-Secret: <x-api-secret>'import requests
url = "https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued"
headers = {
"X-Api-Key": "<x-api-key>",
"X-Api-Secret": "<x-api-secret>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Api-Key': '<x-api-key>', 'X-Api-Secret': '<x-api-secret>'}
};
fetch('https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>",
"X-Api-Secret: <x-api-secret>"
],
]);
$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://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
req.Header.Add("X-Api-Secret", "<x-api-secret>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued")
.header("X-Api-Key", "<x-api-key>")
.header("X-Api-Secret", "<x-api-secret>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<x-api-key>'
request["X-Api-Secret"] = '<x-api-secret>'
response = http.request(request)
puts response.read_body{
"success": true,
"status_code": 200,
"message": "Success",
"records": [
{
"address_line": "742 Evergreen Terrace",
"amount": 150,
"card_nick_name": "Employee Performance Bonus",
"card_number": "**5426",
"city": "Austin",
"country": "US",
"created_at": "2026-02-12T10:15:30Z",
"first_name": "Michael",
"last_name": "Anderson",
"payee_card_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
"payee_id": "c9b1f3b2-8d9a-4f1b-a9e5-6a77f0b12345",
"request_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
"state": "TX",
"status": "approved",
"zip": "78701"
}
],
"totalRecords": 0,
"queryGeneratedTime": 1778161546
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Headers
Your API Key (UUID format). Required to identify and authorize each request
Secret associated with your API Key. Used for authenticating requests. Keep this secure.
Response
Successful Response
Indicates whether the request was processed successfully.
true
HTTP status code representing the result of the request.
Short, human-readable message describing the outcome of the request.
List of result items returned for the current page.
Show child attributes
Show child attributes
Total number of matching records in the database, useful for paginating the full dataset.
Unix timestamp (in seconds) indicating when this response was generated.
