{"id":15671503,"url":"https://github.com/hexagon/entsoe-api-client","last_synced_at":"2025-05-06T20:27:14.475Z","repository":{"id":64646296,"uuid":"577038776","full_name":"Hexagon/entsoe-api-client","owner":"Hexagon","description":"ENTSO-e transparency platform API Client built for Deno. Complete. Easy to use. Minimal.","archived":false,"fork":false,"pushed_at":"2023-10-29T20:22:53.000Z","size":141,"stargazers_count":12,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-06T04:50:29.356Z","etag":null,"topics":["electricity-market","electricity-prices","entso-e","entsoe","entsoe-api","spot-price"],"latest_commit_sha":null,"homepage":"https://entsoe-api-client.56k.guru","language":"TypeScript","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/Hexagon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":".github/FUNDING.yml","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},"funding":{"github":["hexagon"],"ko_fi":"hexagon_56k"}},"created_at":"2022-12-11T19:32:52.000Z","updated_at":"2025-01-21T18:35:44.000Z","dependencies_parsed_at":"2024-10-03T15:03:26.073Z","dependency_job_id":"a7ad66be-952e-4fa4-ac65-40d7bea1557a","html_url":"https://github.com/Hexagon/entsoe-api-client","commit_stats":{"total_commits":65,"total_committers":1,"mean_commits":65.0,"dds":0.0,"last_synced_commit":"9f09427702bece67dc126ecc4e89db6f19b4a8ed"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hexagon%2Fentsoe-api-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hexagon%2Fentsoe-api-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hexagon%2Fentsoe-api-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hexagon%2Fentsoe-api-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hexagon","download_url":"https://codeload.github.com/Hexagon/entsoe-api-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252763397,"owners_count":21800484,"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":["electricity-market","electricity-prices","entso-e","entsoe","entsoe-api","spot-price"],"created_at":"2024-10-03T15:02:59.325Z","updated_at":"2025-05-06T20:27:14.455Z","avatar_url":"https://github.com/Hexagon.png","language":"TypeScript","funding_links":["https://github.com/sponsors/hexagon","https://ko-fi.com/hexagon_56k"],"categories":[],"sub_categories":[],"readme":"# entsoe-api-client\n\nUnofficial ENTSO-e REST API Client for Deno and Node. Comprehensive. User-friendly. Minimalistic.\n\n[![Module type: CJS+ESM](https://img.shields.io/badge/npm-cjs%2Besm-brightgreen)](https://www.npmjs.org/package/entsoe-api-client)\n[![NPM Downloads](https://img.shields.io/npm/dm/entsoe-api-client.svg)](https://www.npmjs.org/package/entsoe-api-client)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Hexagon/entsoe-api-client/blob/master/LICENSE) \n\nCheck out the full documentation at [https://entsoe-api-client.56k.guru](https://entsoe-api-client.56k.guru)\n\n## Features\n\n  * Supports all requests listed in [Entso-e REST API Documentation](https://transparency.entsoe.eu/content/static_content/Static%20content/web%20api/Guide.html)\n  * Supports zip-file endpoints and transparently unzips documents\n  * Includes [examples](/examples) that support both Deno and Node\n  * Supports both Deno and Node (\u003e=18.0)\n  * Written in fully typed [TypeScript](https://www.typescriptlang.org/)\n  * Offers ESM (for Deno and Node) and CommonJS (for Node) support\n  * Adds descriptions to codes while parsing the documents\n\n## Quick usage\n\nHere's a quick example on how a entsoe api query is made using entsoe-api-client.\n\n```js\n// Run ENTSO-e transparency playform query\nconst result = await QueryPublication(\n    typeof process !== \"undefined\" ?  // Your entsoe api-token by environment variable\n        process.env.API_TOKEN // ... in Node\n        : Deno.env.get(\"API_TOKEN\"), // ... in Deno\n     {\n        documentType: \"A44\",              // A44 - Price document\n        processType: \"A01\",               // A01 - Day ahead\n        inDomain: Area(\"BZN|SE2\"),            // In_Domain: For A44 - Electricity price area\n        outDomain: Area(\"BZN|SE2\"),           // Out_Domain: For A44 - Electricity price area\n        startDateTime: dateToday,         // Start date\n        endDateTime: dateTomorrow         // End date\n    }\n); \n```\n\nFor full documentation on installation and usage, refer to the full documentation at [https://entsoe-api-client.56k.guru](https://entsoe-api-client.56k.guru).\n\nExamples can be found in the [/examples](/examples) directory.\n\nTo run the examples, pass your ENTSO-e API key as an environment variable called `API_TOKEN`.\n**Deno**\n\nPowershell\n```\n$env:API_TOKEN=\"your-api-token\"; deno run -A .\\spot-prices-today.ts\n```\nBash\n```\nAPI_TOKEN=\"your-api-token\" deno run -A .\\spot-prices-today.ts\n```\n\n**Node**\n\nPowershell\n```\n$env:API_TOKEN=\"your-api-token\"; node .\\spot-prices-today.ts\n```\nBash\n```\nAPI_TOKEN=\"your-api-token\" node .\\spot-prices-today.ts\n```\n\n## Contributing \u0026 Support\n\nentsoe-api-client is founded and actively maintained by Hexagon. If you find value in entsoe-api-client and want to contribute:\n\nCode Contributions: See our Contribution Guide for details on how to contribute code.\n\nSponsorship and Donations: See github.com/sponsors/hexagon\n\nYour trust, support, and contributions drive the project. Every bit, irrespective of its size, is deeply appreciated.\n\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexagon%2Fentsoe-api-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhexagon%2Fentsoe-api-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexagon%2Fentsoe-api-client/lists"}