{"id":24789175,"url":"https://github.com/dfm18/exchange-rate-api-client","last_synced_at":"2026-02-07T21:04:14.300Z","repository":{"id":273591907,"uuid":"919750735","full_name":"dfm18/exchange-rate-api-client","owner":"dfm18","description":"Unofficial client to interact with the Exchange Rate API V6.","archived":false,"fork":false,"pushed_at":"2025-01-24T13:51:48.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-23T12:59:57.583Z","etag":null,"topics":["exchange-rate-api","python","rest-api-client"],"latest_commit_sha":null,"homepage":"","language":"Python","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/dfm18.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-21T00:06:55.000Z","updated_at":"2025-01-24T12:46:11.000Z","dependencies_parsed_at":"2025-01-24T13:37:33.088Z","dependency_job_id":"acb48cc9-e205-49a5-903e-0e9b577e37ce","html_url":"https://github.com/dfm18/exchange-rate-api-client","commit_stats":null,"previous_names":["dfm18/exchange-rate-client","dfm18/exchange-rate-api-client"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dfm18/exchange-rate-api-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fexchange-rate-api-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fexchange-rate-api-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fexchange-rate-api-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fexchange-rate-api-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dfm18","download_url":"https://codeload.github.com/dfm18/exchange-rate-api-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfm18%2Fexchange-rate-api-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29208176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T20:33:12.493Z","status":"ssl_error","status_checked_at":"2026-02-07T20:30:47.381Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["exchange-rate-api","python","rest-api-client"],"created_at":"2025-01-29T17:16:23.920Z","updated_at":"2026-02-07T21:04:14.286Z","avatar_url":"https://github.com/dfm18.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exchange Rate API Client\n\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/exchange-rate-api-client)\n![PyPI - License](https://img.shields.io/pypi/l/exchange-rate-api-client)\n![PyPI](https://img.shields.io/pypi/v/exchange-rate-api-client)\n![Downloads](https://img.shields.io/pypi/dm/exchange-rate-api-client)\n\nUnofficial client to interact with the [Exchange Rate API](https://www.exchangerate-api.com/) V6.\n\n- **Simple API client:** Easy-to-use interface to interact with the Exchange Rate API.\n- **Open Access Support:** Fetch exchange rates without requiring an API key.\n\n## Installation\n\nInstall package from PyPi with:\n\n```bash\npip install exchange-rate-api-client\n```\n\n## Usage\n\n### API Client\n\nYou can initializate a api client with your API key to access all endpoints:\n\n```python\nfrom exchange_rate_api_client import ExchangeRateApiV6Client\n\nclient = ExchangeRateApiV6Client(api_key=\"\u003cYOUR_API_KEY\u003e\")\n\n# Example: Convert 100 USD to EUR\nconversion = client.pair_conversion(\n    base_code=\"USD\",\n    target_code=\"EUR\",\n    amount=100,\n)\nprint(conversion)\n```\n\n### Open Access\n\nFor basic access without an API key, fetch the latest exchange rates:\n\n```python\nfrom exchange_rate_api_client import fetch_exchange_rates\n\n# Example: Fetch exchange rates for USD\ndata = fetch_exchange_rates(base_code=\"USD\")\nprint(data)\n```\n\n### Additional Examples\n\n#### Fetch enriched data:\n\n```python\ndata = client.fetch_enriched_data(\n    base_code=\"USD\",\n    target_code=\"JPY\",\n)\nprint(data)\n```\n\n#### Fetch historical data:\n\n```python\nfrom datetime import date\n\ndata = client.fetch_historical_data(\n    base_code=\"USD\",\n    date_obj=date(2023, 1, 1),\n    amount=100,\n)\nprint(data)\n```\n\n## Requirements\n\n- Python 3.7 or higher\n- An API key from [Exchange Rate API](https://www.exchangerate-api.com/) for full access.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Feel free to submit issues or pull requests to improve the client.\n\n## Links\n\n- [API Documentation](https://www.exchangerate-api.com/docs/overview)\n- [Project Page](https://pypi.org/project/exchange-rate-api-client/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfm18%2Fexchange-rate-api-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdfm18%2Fexchange-rate-api-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfm18%2Fexchange-rate-api-client/lists"}