Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Request Code Samples
curl --location --request GET 'http://localhost:8000/jewellery/rate' \
--header 'Authorization: Basic <encoded-value>'
Responses
{
"code": 0,
"result": {
"id": "string",
"fineGold": {
"per10g": 0,
"perTola": 0
},
"tejabiGold": {
"per10g": 0,
"perTola": 0
},
"silver": {
"per10g": 0,
"perTola": 0
},
"asOf": "string",
"createdAt": "string",
"updatedAt": "string"
},
"error": "string"
}
Modified at 2026-01-25 17:00:43