{"id":20254008,"url":"https://github.com/frectonz/birru","last_synced_at":"2025-07-15T09:10:59.019Z","repository":{"id":134258142,"uuid":"445987447","full_name":"frectonz/birru","owner":"frectonz","description":"A REST server that returns data related to Ethiopian forex exchange rates.","archived":false,"fork":false,"pushed_at":"2023-11-07T05:36:31.000Z","size":44,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-03T17:13:40.478Z","etag":null,"topics":["currency","ethiopia","exchange","money","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frectonz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-01-09T03:54:05.000Z","updated_at":"2023-11-07T05:23:41.000Z","dependencies_parsed_at":"2023-11-07T06:25:18.061Z","dependency_job_id":"f6a98b38-7391-4667-9cce-c63c7f1f3bc2","html_url":"https://github.com/frectonz/birru","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/frectonz/birru","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frectonz%2Fbirru","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frectonz%2Fbirru/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frectonz%2Fbirru/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frectonz%2Fbirru/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frectonz","download_url":"https://codeload.github.com/frectonz/birru/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frectonz%2Fbirru/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265424510,"owners_count":23762881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["currency","ethiopia","exchange","money","rust"],"created_at":"2024-11-14T10:29:20.171Z","updated_at":"2025-07-15T09:10:58.972Z","avatar_url":"https://github.com/frectonz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Birru\n\nA REST server that returns data related to Ethiopian forex exchange rates.\n\n## Usage\n\nRunning the server\n\n```bash\n$ cargo run\nListening on http://0.0.0.0:3000\n```\n\nTesting with [httpie](https://httpie.io/).\n\n```bash\n$ http localhost:3000\n```\n\n## Sample Response\n\n```json\n[\n  {\n    \"selling\": 13.3139,\n    \"buying\": 13.0528,\n    \"currency\": \"UAEDirham\"\n  },\n  {\n    \"selling\": 36.6317,\n    \"buying\": 35.9134,\n    \"currency\": \"CanadianDollar\"\n  },\n  {\n    \"selling\": 4.637,\n    \"buying\": 4.5461,\n    \"currency\": \"SwedishKroner\"\n  },\n  {\n    \"selling\": 71.0745,\n    \"buying\": 69.6809,\n    \"currency\": \"Sdr\"\n  },\n  {\n    \"selling\": 6.8158,\n    \"buying\": 6.6822,\n    \"currency\": \"DanishKroner\"\n  },\n  {\n    \"selling\": 167.5669,\n    \"buying\": 164.2813,\n    \"currency\": \"KuwaitiDinar\"\n  },\n  {\n    \"selling\": 54.4415,\n    \"buying\": 53.374,\n    \"currency\": \"SwissFranc\"\n  },\n  {\n    \"selling\": 0.3002,\n    \"buying\": 0.2943,\n    \"currency\": \"DjiboutiFranc\"\n  },\n  {\n    \"selling\": 0.6618,\n    \"buying\": 0.6488,\n    \"currency\": \"IndianRupee\"\n  },\n  {\n    \"selling\": 0.4426,\n    \"buying\": 0.4339,\n    \"currency\": \"KenyanShilling\"\n  },\n  {\n    \"selling\": 3.101,\n    \"buying\": 3.0402,\n    \"currency\": \"SouthAfricanRand\"\n  },\n  {\n    \"selling\": 54.0367,\n    \"buying\": 52.9772,\n    \"currency\": \"USDollar\"\n  },\n  {\n    \"selling\": 6.8391,\n    \"buying\": 6.705,\n    \"currency\": \"ChineseYuan\"\n  },\n  {\n    \"selling\": 13.0096,\n    \"buying\": 12.7545,\n    \"currency\": \"SaudiRiyal\"\n  },\n  {\n    \"selling\": 0.3501,\n    \"buying\": 0.3432,\n    \"currency\": \"JapaneseYen\"\n  },\n  {\n    \"selling\": 61.3172,\n    \"buying\": 60.1149,\n    \"currency\": \"PoundSterling\"\n  },\n  {\n    \"selling\": 32.7211,\n    \"buying\": 32.0795,\n    \"currency\": \"AustralianDollar\"\n  },\n  {\n    \"selling\": 56.0145,\n    \"buying\": 54.9162,\n    \"currency\": \"Euro\"\n  },\n  {\n    \"selling\": 4.8497,\n    \"buying\": 4.7546,\n    \"currency\": \"NorwegianKroner\"\n  }\n]\n```\n\nSupported currencies are:\n\n- UAEDirham\n- CanadianDollar\n- SwedishKroner\n- Sdr\n- DanishKroner\n- KuwaitiDinar\n- SwissFranc\n- DjiboutiFranc\n- IndianRupee\n- KenyanShilling\n- SouthAfricanRand\n- USDollar\n- ChineseYuan\n- SaudiRiyal\n- JapaneseYen\n- PoundSterling\n- AustralianDollar\n- Euro\n- NorwegianKroner\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrectonz%2Fbirru","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrectonz%2Fbirru","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrectonz%2Fbirru/lists"}