LordWiader
New Member
- Joined
- Jun 23, 2021
- Messages
- 3
- Office Version
- 2016
- Platform
- Windows
Greetings Everyone,
As it is my first post I would like to thank you for opportunity to join this community.
My name is Piotr and recently I have been asked to download data from transparency platform using API and Power Query.
I have never seen or used Power Query or API therefore I kindly ask for your help with modyfying below code I wrote.
Code:
Website I need to accquire data from (including filters) :
Data view
API Guide: https://transparency.entsoe.eu/content/static_content/Static content/web api/Guide.html
Data Extraction Process Implementation Guide : https://transparency.entsoe.eu/content/static_content/download?path=/Static content/web api/RestfulAPI_IG.pdf
Much appreciate your help in this matter.
As it is my first post I would like to thank you for opportunity to join this community.
My name is Piotr and recently I have been asked to download data from transparency platform using API and Power Query.
I have never seen or used Power Query or API therefore I kindly ask for your help with modyfying below code I wrote.
Code:
XML:
let
Source =
Xml.Tables(
Web.Contents(
"https://web-api.tp.entsoe.eu/api?",
[
RelativePath="/api",
Query=
[
securityToken=#"0320cd33-0a34-49d8-9edc-3a31fc102d2a",
DocumentType="A80",
BusinessType="A16",
BiddingZone_Domain="10YCB-POLAND---Z",
periodStart="202301010100",
periodEnd="202301060100",
Headers=[#"Content-Type"="application/xml"]
]
)
)
in
Source
Website I need to accquire data from (including filters) :
Data view
API Guide: https://transparency.entsoe.eu/content/static_content/Static content/web api/Guide.html
Data Extraction Process Implementation Guide : https://transparency.entsoe.eu/content/static_content/download?path=/Static content/web api/RestfulAPI_IG.pdf
Much appreciate your help in this matter.