List
List card programs
get/v1/card_programs
List card programs.
Query Parameters
ending_beforestring
optional
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
page_sizenumber
optional
Page size (for pagination).
maximum100
minimum1
starting_afterstring
optional
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
Returns
dataarray of tokenstringcreatedstringnamestringpan_range_endstringpan_range_startstringcardholder_currencystringsettlement_currenciesarray of stringCardProgram
has_moreboolean
More data exists.
Request example Request
curl https://api.lithic.com/v1/card_programs \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created": "2019-12-27T18:11:19.117Z",
"name": "My Prepaid Program",
"pan_range_end": "52304803",
"pan_range_start": "52304803",
"cardholder_currency": "USD",
"settlement_currencies": [
"USD",
"CAD"
]
}
],
"has_more": true
}