get https://api-approval.tingg.africa/api/v3/forex/payout/conversion/fetch/all
A single request to return all currency rates supported by Tingg FX Rates
Steps
- Authenticate to retrieve the bearer token.
- Query for a multiple rates.
Live endpoint
https://api.tingg.africa/api/v3/forex/payout/conversion/fetch/all
Request
Headers
Authorization is required to access this API
Key | Value Type | Description |
---|---|---|
Authorization | String | Bearer token generated for your user |
Request Parameters
The API will accept the below query parameters
Key | Value Type | Required | Description |
---|---|---|---|
baseCurrencyCode | String | No | 3 letter currency code indicating the base currency for the exchange rate. Defaults to USD |
Response
Response Parameters
Parameter | Type | Description |
---|---|---|
success | boolean | Success status of the request |
statusCode | Integer | Status of the response. |
message | Integer | Authentication description |
size | Integer | Pagination size |
totalItems | Integer | Total number of currency pairs available |
totalPages | Integer | Number of pages available |
page | Integer | Existing page |
data | Object[] | An array of currency pairs |
baseCurrencyCode | String | The currency to convert from. Null when none was found. |
exchangeCurrencyCode | String | The currency to convert to. Null when none was found. |
sellRate | Float | The currency sell rate. Null when none was found. |
buyRate | Float | The currency buy rate. Null when none was found. |
lastUpdated | String | Date when the rate was last updated |
Sample Response
{
"success": true,
"statusCode": 200,
"message": "Forex rates fetched successfully.",
"size": 10,
"totalItems": 1,
"totalPages": 1,
"page": 1,
"data": [
{
"baseCurrencyCode": "USD",
"exchangeCurrencyCode": "GHS",
"sellRate": 12.5,
"buyRate": 10.5,
"lastUpdated": "2025-08-05T08:37:55"
}
]
}