Get All Currencies
The Get All Currencies API retrieves a list of all available currencies in the system. This endpoint requires a valid bearer token for authentication.
API Method
GET
Endpoint
https://cebuana-apiuat.veryfyglobal.com/currencies
Headers
Key
Value
Accept
application/json
Authorization
Bearer <YOUR_TOKEN>
Query Parameters
Parameter
Type
Required
Description
name
string
No
Filter by currency name (e.g., "United States Dollar"). Matches partial strings.
code
string
No
Filter by currency code (e.g., USD, EUR). This must be a valid ISO 4217 code.
paginate
boolean
No
Enable or disable pagination. Set to no for disabling pagination and returning all results in one response. Default is paginated.
is_active
integer
No
Filter active or inactive currencies. Set to 1 for active currencies or 0 for inactive currencies.
Response Sample
{
"message": "Ok",
"data": {
"records": [
{
"id": 2,
"order": 0,
"name": "United States Dollar",
"code": "USD",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/a45f69f0-c99f-45bb-a384-a3dae0f4244b.gif",
"buy_rate": "60.00000",
"sell_rate": "60.00000",
"is_active": {
"value": 1,
"description": "Yes"
},
"is_sell_active": {
"value": 1,
"description": "Yes"
},
"updated_at": "2025-05-16T04:18:43.000000Z"
},
{
"id": 3,
"order": 0,
"name": "Euro",
"code": "EUR",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/62c28ca7-ba9c-4a0c-89a2-1f5cd6da5866.png",
"buy_rate": "61.50000",
"sell_rate": "62.95000",
"is_active": {
"value": 1,
"description": "Yes"
},
"is_sell_active": {
"value": 0,
"description": "No"
},
"updated_at": "2025-07-15T09:06:42.000000Z"
},
{
"id": 4,
"order": 0,
"name": "Australian Dollar",
"code": "AUD",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/4de11a55-4f97-402c-9aad-8df095d5b188.png",
"buy_rate": "40.00000",
"sell_rate": "39.50000",
"is_active": {
"value": 1,
"description": "Yes"
},
"is_sell_active": {
"value": 1,
"description": "Yes"
},
"updated_at": "2025-07-15T08:56:29.000000Z"
},
{
"id": 5,
"order": 0,
"name": "Japanese Yen",
"code": "JPY",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/fa5a65b4-5d94-492d-92a6-4bd13d182c37.png",
"buy_rate": "0.38600",
"sell_rate": "0.39900",
"is_active": {
"value": 1,
"description": "Yes"
},
"is_sell_active": {
"value": 1,
"description": "Yes"
},
"updated_at": "2025-07-15T08:56:30.000000Z"
},
{
"id": 6,
"order": 0,
"name": "Hong Kong Dollar",
"code": "HKD",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/bc5dd2b8-ccc3-49c3-a16a-02f2e6204d79.png",
"buy_rate": "7.50000",
"sell_rate": "7.87000",
"is_active": {
"value": 1,
"description": "Yes"
},
"is_sell_active": {
"value": 1,
"description": "Yes"
},
"updated_at": "2025-07-15T08:56:31.000000Z"
},
{
"id": 7,
"order": 5,
"name": "Canadian Dollar",
"code": "CAD",
"image": "https://cebuana-apiuat.veryfyglobal.com/storage/uat/currency/994ddd43-22f8-452b-9861-1d4af2777bd3.jpg",
"buy_rate": "42.29000",
"sell_rate": "0.00000",
"is_active": {
"value": 0,
"description": "No"
},
"is_sell_active": {
"value": 0,
"description": "No"
},
"updated_at": "2025-03-26T02:34:32.000000Z"
}
],
"pagination": {
"current_page": 1,
"last_page": 1,
"total_record": 6,
"page_size": 20,
"has_more_page": false
}
}
}Last updated