Look Up Datas | SaaS API Finance Currency Address Country
close

Documentation

2. Endpoints > 2.2. Finance


2.2.1. Bank

Base URL:
  https://api.lookupdatas.com

To Get [TOKEN] go to 1.1. Token


Request - getbycountryid:
  curl 
  --location '[BASEURL]/financemanagement/api/bank/getbycountryid?countryId=406FCF8F-8925-4B6A-8B5A-071D7808C971' 
  --header 'Authorization: Bearer [TOKEN]'
                    
Response - getbycountryid:
  {
    "header": {
        "globalId": "bfc384ac-af3a-4f69-8c15-6356e9651bb6",
        "isSuccess": true,
        "message": null
    },
    "body": [
        {
            "id": "b5a18a79-4528-44fe-8bf4-72e962e9237e",
            "name": "Adabank A.Ş.",
            "code": "100"
        },
        {
            "id": "0bc35e76-b68d-4361-9265-7a6d63706e7e",
            "name": "Akbank T.A.Ş.",
            "code": "046"
        },
        {
            "id": "8316560a-23a7-44c7-915f-692a85b6eb2e",
            "name": "Aktif Yatırım Bankası A.Ş.",
            "code": "143"
        }
        ...
    ]
}

Request - getbyid:
  curl 
  --location '[BASEURL]/financemanagement/api/bank/getbyid?id=b5a18a79-4528-44fe-8bf4-72e962e9237e' 
  --header 'Authorization: Bearer [TOKEN]'
                    
Request - getbycode:
  curl 
  --location '[BASEURL]/financemanagement/api/bank/getbycode?code=100' 
  --header 'Authorization: Bearer [TOKEN]'
                    
Response - getbyid, getbycode:
  {
    "header": {
        "globalId": "660fbe3c-8061-4f87-9e7d-5da4b6530db1",
        "isSuccess": true,
        "message": null
    },
    "body": {
        "id": "b5a18a79-4528-44fe-8bf4-72e962e9237e",
        "name": "Adabank A.Ş.",
        "code": "100"
    }
}