Connecting to the StatXplore API in PowerBI

Office for National Statistics
Office for National StatisticsOffice for National Statistics

This is a guide prepared by Suffolk County Council on connecting to the StatXPlore API using PowerBI, when constructing dashboards.

Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Connecting to the StatXplore API using Power BI
Introduction
The StatXplore API allows users to retrieve data as it is updated. The response sent by the API
can appear challenging to process, but data can be successfully extracted given the consistent
layout of the response.
The response layout requires two queries; one to retrieve labels for each of the fields requested
(such as date or geography), plus an additional query for the data itself. These queries must be
linked to use the labels alongside the data.
This guide is split into two main sections: how to query the API and how to process the
response. The Appendix contains examples of query bodies, a query template, and a full query
example (excluding API Key).
The method described in this guide was initially created with assistance from colleagues at IJYI.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Querying the StatXplore API
Prerequisites
To query the StatXplore API, you will need:
a. A personal API Key. This is obtained by registering on the StatXplore website. Always
use your personal API Key. If the user assigned to your API Key deregisters from
StatXplore, your queries will not function. Once registered, your API Key can be found
in the Account section of the website. Use the link in the top right once registered and
logged in:
b. The body of the query to send to the API. The easiest way to construct this is to use the
StatXplore website to build the table of data you need, then export it as an Open Data
API query (.json). Save this file so that you can refer to it later. This export will need
further editing before use in a query, see Preparing the Query Body.
c. A program to prepare the query body. Notepad++ is recommended, although
alternative software can be used.
d. A template to put your query body into. An example template can be found in the
Appendix of this document.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Preparing the Query Body
The .json file that is exported from StatXplore (see Prerequisites) must be edited before use.
This needs to be done for each query that you use. See the finished Example query body (1) and
Example query body (2) in the Appendix.
1. Open the .json file exported from StatXplore in step B of the Prerequisites in Notepad++.
2. Remove the text relating to date fields from the recodes section, but not from the
dimensions section. This is done so that values from all dates are returned, not only
those dates specified on the StatXplore website. Without this step, queries will not
return new data. Remove the text from and including the comma preceding the date
field name, up to and including the right parenthesis after the ‘total’ line of the date
field (see examples below where the highlighted text should be deleted).
3. Remove the text relating to any other fields for which you want to return all available
data rather than only the values initially specified. Use the same technique as above:
remove the text from and including the comma preceding the field name, up to and
including the right parenthesis after the ‘total’ line of the field. This could be used, for
example, to see values for all the employment indicators for Alternative Claimant Count.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Remove the text relating to these fields from the recodes section, but not the
dimensions section. Removing text from the dimensions section would remove this field
from the query entirely.
4. Replace every instance of a speech mark (") with a double speech mark (""). Note that
this must be the two vertical lines; using the quotation marks in Word (“ and ”) will not
be recognised and will cause the query to fail.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Creating a Query
1. In Power BI desktop, add a new data source and use the Blank Query option.
2. With this new blank query created, open the Advanced Editor. Select everything in the
box, delete it, then paste in the Query Template.
3. The query template creates the variables url, body and header:
• url is the web address used for any query that aims to bring back data from the
StatXplore API. This does not need to change.
• body is the part of the query that tells the API which data to return. Paste your
prepared query body between the speech marks in the body line.
• header is where your personal API Key is added to authenticate access to the API.
Paste your API key between the speech marks in the header line.
The variable response uses the url, body and header variables as inputs to the Web.Contents
function. response is returned as json using the Json.Document function.
Click Done and wait for the response from the API. If your query has worked, you should see
this:
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
If so, you can now access and transform the data.
If asked for credentials for this data source, select Anonymous credentials and Public privacy
level.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Accessing and Transforming Data
Overview
The response from the API should look like this:
The data returned by the query comes from the fields and cubes rows of this table. fields
contains the labels for your dataset such as geography, date and sex. cubes contains the values
of your dataset. The yellow words List and Record act as links and can be used to navigate
through the json document.
By default, there are no labels assigned to the values in the cubes section. The data is
presented in a hierarchy, but there are no labels assigned to each level in the hierarchy.
Fortunately, the response sent by the API will always follow a set of rules. The rules of the API
response are:
a. The hierarchy of data within the cubes is always in the same order as the List of fields.
b. The labels for each field are always in the same order as the List of records within a
field.
These rules mean that, if expanded correctly, a flat table can be created with each combination
of labels in the order that they occur in the data. The general process for this method is:
1. Transform the list of fields into a single row.
2. Expand each column, working from left to right, to obtain the labels. Each expansion will
create new rows for each combination of existing labels and the newly expanded labels.
3. In a duplicate query, expand the list of values to new rows. Continue expanding to new
rows until the data appears.
4. The order of rows in the labels and values tables is identical. Assign each row in both
tables an index value to allow the tables to be merged or linked.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
5. Merge the values table into the label table using the index columns and expand out the
values column into the labels table. Alternatively, create a relationship between the
index columns in the modelling view and use both tables.
Worked Example: Households on Universal Credit
To show more effectively how to transform the data, I have included a worked example of a
connection to the database for Households on Universal Credit. This uses the example query in
the Appendix. The step numbers correspond to the numbers from the Overview.
Step 1: Transform the list of fields into a single row
Begin from the response provided by the API (see Creating a Query). Click on the List in the
fields row.
From the Transform menu, select Convert To Table. This allows the Records to be manipulated.
Expand the column of Records to get a List for the labels for each field (there are two in this
example, area and date). Click the Expand button at the top right of the column. Select only the
items checkbox, then click OK.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
The Lists need to be switched from rows to columns. Use the Transpose option from the
Transform menu.
There is now a column for each field in the query.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Step 2: Expand the labels table to obtain labels for each row
Each column should now be expanded to obtain the labels for each field. The rows will be
created in the order that they will appear in the data. As each column is expanded, new rows
are added for each existing row.
Click the Expand button at the top-right of the first column. Select Expand to New Rows. This
will create a new row for each of the labels in this field.
Then click the Expand button again and select only the Labels checkbox.
Then click the Expand button for the third time and select Expand to New Rows.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
This has added to labels for the first field. Now, return to the start of this step and repeat the
process for all the field columns, working from left to right, until the rightmost column has
labels rather than Lists. When expanding each column to new rows for the first time, a new row
will be created for each label within the new row, for each existing row. In this example, the
expansion of the second column results in 76 rows for each of the existing rows (Babergh, East
Suffolk et cetera) because the second field (month) has 76 labels.
Once all the columns have been expanded and the labels are shown, the labels table expansion
is complete. Each row will be a unique combination of labels which will appear in the same
order as the values table. Rename the columns and change their types accordingly.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Step 3: Expand the values table
Duplicate the previous query and delete all steps up to and including the ‘fields’ step.
Navigate to the Record in the Cubes row. Then select the Record within that, then the List
within that. This should display a List of Lists.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Next, convert this List to a table from the List Tools menu; click OK in the dialog box that
appears.
The table should now display one column with a List in each row. Each List must be expanded to
get the data values. Click the expand button at the top-right of the column and select Expand to
new rows. Repeat this until the data is displayed.
The data is now displayed with a row for each value. These rows correspond exactly to the
order of the rows in the labels table.
Rename the values column and change its type accordingly.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Step 4: Create index columns
The labels and values tables are now complete and ready to be linked. For both queries, add an
index column using the button in the Add Column tab. Use the same settings for the index
columns for both queries.
The tables can now be linked using modelling (relationships) or transformations (merging
queries).
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Step 5a: Linking by merging tables
To use the merging queries approach, open Transform data and select the labels table. From
the Combine section of the Home tab, select Merge Queries.
Select the index column from the labels table. Then select the values table from the first drop-
down box and select the index column. A Left Outer join will be required as the aim is to add
the value column from the values table to the labels table. All rows should match, if not there
has been an error in the expansion of the tables or the indexes have been created using
different settings. Click OK.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Click the expand button in the top-right of the new column. Expand out only the values column.
This will add the values to the labels table, resulting in one table that can be used to filter and
display data as required.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Step 5b: Linking by relationships
To use the modelling approach, load the data and switch to the Model view. Click and drag the
tables you will be using so that they are close together.
Click and drag the index column from one table to the other. This will automatically create a
relationship between these columns.
The relationship should always be of the type 1:1. This will be automatically calculated. If the
relationship is not of this type, there has been an error in the expansion of the tables or the
indexes have been created using different settings. To make the report easier to use, hide the
index columns from the report view using the eye icon.
The fields from the labels table can now be used to filter and display the data in the values
table.
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Appendix
Example query body (1)
{
""database"" : ""str:database:UC_Households"",
""measures"" : [ ""str:count:UC_Households:V_F_UC_HOUSEHOLDS"" ],
""recodes"" : {
""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" : {
""map"" : [ [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000200"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000244"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000202"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000203"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000245"" ] ],
""total"" : true
}
},
""dimensions"" : [ [ ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" ], [
""str:field:UC_Households:F_UC_DATE:DATE_NAME"" ] ]
}
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Example query body (2)
{
""database"" : ""str:database:ACC"",
""measures"" : [ ""str:count:ACC:V_F_ACC"" ],
""recodes"" : {
""str:field:ACC:V_F_ACC:UK_COA"" : {
""map"" : [ [
""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000200"" ], [
""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000244"" ], [
""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000202"" ], [
""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000203"" ], [
""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000245"" ] ],
""total"" : true
}
},
""dimensions"" : [ [ ""str:field:ACC:V_F_ACC:UK_COA"" ], [
""str:field:ACC:F_ACC_DATE_new:DATE_NAME"" ], [ ""str:field:ACC:V_F_ACC:EMP"" ] ]
}
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Full example query
For privacy reasons the API key has been omitted. Copy and paste your personal API key
between the speech marks after APIKey= to get this query to work.
let
url = "https://stat-xplore.dwp.gov.uk/webapi/rest/v1/table",
body = "{
""database"" : ""str:database:UC_Households"",
""measures"" : [ ""str:count:UC_Households:V_F_UC_HOUSEHOLDS"" ],
""recodes"" : {
""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" : {
""map"" : [ [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000200"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000244"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000202"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000203"" ], [
""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R
EGION:E07000245"" ] ],
""total"" : true
}
},
""dimensions"" : [ [ ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" ], [
""str:field:UC_Households:F_UC_DATE:DATE_NAME"" ] ]
}",
header = [ #"APIKey"="" ],
response = Web.Contents(url,[Content=Text.ToBinary(body),Headers=header]),
Source = Json.Document(response,1252)
in
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Source
Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023)
phc_analytics@suffolk.gov.uk
Query template
let
url = "https://stat-xplore.dwp.gov.uk/webapi/rest/v1/table",
body = "",
header = [ #"APIKey"="" ],
response = Web.Contents(url,[Content=Text.ToBinary(body),Headers=header]),
Source = Json.Document(response,1252)
in
Source

Recommandé

Connecting to the NOMIS API in PowerBI par
Connecting to the NOMIS API in PowerBIConnecting to the NOMIS API in PowerBI
Connecting to the NOMIS API in PowerBIOffice for National Statistics
79 vues4 diapositives
ONS Local presents: Using Open Data to visualise public transport coverage par
ONS Local presents: Using Open Data to visualise public transport coverageONS Local presents: Using Open Data to visualise public transport coverage
ONS Local presents: Using Open Data to visualise public transport coverageOffice for National Statistics
93 vues21 diapositives
Understanding the cost of living through statistics par
Understanding the cost of living through statisticsUnderstanding the cost of living through statistics
Understanding the cost of living through statisticsOffice for National Statistics
671 vues102 diapositives
State of GovTech Market Briefing.pptx par
State of GovTech Market Briefing.pptxState of GovTech Market Briefing.pptx
State of GovTech Market Briefing.pptxDustin Haisler
143 vues37 diapositives
ONS Local and Data Science Community Workshop 1: How to use APIs par
ONS Local and Data Science Community Workshop 1: How to use APIsONS Local and Data Science Community Workshop 1: How to use APIs
ONS Local and Data Science Community Workshop 1: How to use APIsOffice for National Statistics
119 vues12 diapositives
Setup of budget in oracle par
Setup of budget in oracleSetup of budget in oracle
Setup of budget in oraclemalikbnu2008
4.6K vues26 diapositives

Contenu connexe

Tendances

AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWS par
AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWSAWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWS
AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWSAmazon Web Services Korea
2.7K vues53 diapositives
Amazon Redshift par
Amazon Redshift Amazon Redshift
Amazon Redshift Amazon Web Services
5.3K vues71 diapositives
Tableau (BI) interview questions version 2.0 par
Tableau (BI) interview questions version 2.0Tableau (BI) interview questions version 2.0
Tableau (BI) interview questions version 2.0Visualect
13.5K vues37 diapositives
Predictive Analytics: It's The Intervention That Matters par
Predictive Analytics: It's The Intervention That MattersPredictive Analytics: It's The Intervention That Matters
Predictive Analytics: It's The Intervention That MattersHealth Catalyst
4.7K vues76 diapositives
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화 par
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화Amazon Web Services Korea
4.3K vues81 diapositives
Modern Data Warehousing with Amazon Redshift par
Modern Data Warehousing with Amazon RedshiftModern Data Warehousing with Amazon Redshift
Modern Data Warehousing with Amazon RedshiftAmazon Web Services
3K vues31 diapositives

Tendances(20)

AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWS par Amazon Web Services Korea
AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWSAWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWS
AWS에서 빅데이터 프로젝트 시작하기 - 이종화 솔루션즈 아키텍트, AWS
Tableau (BI) interview questions version 2.0 par Visualect
Tableau (BI) interview questions version 2.0Tableau (BI) interview questions version 2.0
Tableau (BI) interview questions version 2.0
Visualect 13.5K vues
Predictive Analytics: It's The Intervention That Matters par Health Catalyst
Predictive Analytics: It's The Intervention That MattersPredictive Analytics: It's The Intervention That Matters
Predictive Analytics: It's The Intervention That Matters
Health Catalyst4.7K vues
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화 par Amazon Web Services Korea
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화
AWS 12월 웨비나 │성공적인 마이그레이션을 위한 클라우드 아키텍처 및 운영 고도화
실전! AWS 하이브리드 네트워킹 (AWS Direct Connect 및 VPN 데모 세션) - 강동환, AWS 솔루션즈 아키텍트:: A... par Amazon Web Services Korea
실전! AWS 하이브리드 네트워킹 (AWS Direct Connect 및 VPN 데모 세션) - 강동환, AWS 솔루션즈 아키텍트::  A...실전! AWS 하이브리드 네트워킹 (AWS Direct Connect 및 VPN 데모 세션) - 강동환, AWS 솔루션즈 아키텍트::  A...
실전! AWS 하이브리드 네트워킹 (AWS Direct Connect 및 VPN 데모 세션) - 강동환, AWS 솔루션즈 아키텍트:: A...
[Retail & CPG Day 2019] 유통 고객의 AWS 도입 동향 - 박동국, AWS 어카운트 매니저, 김준성, AWS어카운트 매니저 par Amazon Web Services Korea
[Retail & CPG Day 2019] 유통 고객의 AWS 도입 동향 - 박동국, AWS 어카운트 매니저, 김준성, AWS어카운트 매니저[Retail & CPG Day 2019] 유통 고객의 AWS 도입 동향 - 박동국, AWS 어카운트 매니저, 김준성, AWS어카운트 매니저
[Retail & CPG Day 2019] 유통 고객의 AWS 도입 동향 - 박동국, AWS 어카운트 매니저, 김준성, AWS어카운트 매니저
Automating Management of Amazon EC2 Instances with Auto Scaling - March 2017 ... par Amazon Web Services
Automating Management of Amazon EC2 Instances with Auto Scaling - March 2017 ...Automating Management of Amazon EC2 Instances with Auto Scaling - March 2017 ...
Automating Management of Amazon EC2 Instances with Auto Scaling - March 2017 ...
AWS Summit Seoul 2023 | 성공적인 AWS RDS 마이그레이션을 위한 여정과 필수 고려사항 par Amazon Web Services Korea
AWS Summit Seoul 2023 | 성공적인 AWS RDS 마이그레이션을 위한 여정과 필수 고려사항AWS Summit Seoul 2023 | 성공적인 AWS RDS 마이그레이션을 위한 여정과 필수 고려사항
AWS Summit Seoul 2023 | 성공적인 AWS RDS 마이그레이션을 위한 여정과 필수 고려사항
SQL Server Integration Services – Enterprise Manageability par Dan English
SQL Server Integration Services – Enterprise ManageabilitySQL Server Integration Services – Enterprise Manageability
SQL Server Integration Services – Enterprise Manageability
Dan English3.6K vues
ETL Validator Usecase - Checking for Duplicates par Datagaps Inc
ETL Validator Usecase - Checking for DuplicatesETL Validator Usecase - Checking for Duplicates
ETL Validator Usecase - Checking for Duplicates
Datagaps Inc768 vues
글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트) par Amazon Web Services Korea
글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트)글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트)
글로벌 기업들의 효과적인 데이터 분석을 위한 Data Lake 구축 및 분석 사례 - 김준형 (AWS 솔루션즈 아키텍트)
Analytics and the Olympics: the development of performance analysis systems f... par Innovation Enterprise
Analytics and the Olympics: the development of performance analysis systems f...Analytics and the Olympics: the development of performance analysis systems f...
Analytics and the Olympics: the development of performance analysis systems f...

Similaire à Connecting to the StatXplore API in PowerBI

1 Week 6 - What Well Be Working On This Week In th.docx par
1 Week 6 - What Well Be Working On This Week  In th.docx1 Week 6 - What Well Be Working On This Week  In th.docx
1 Week 6 - What Well Be Working On This Week In th.docxdorishigh
2 vues71 diapositives
Office excel tips and tricks 201101 par
Office excel tips and tricks 201101Office excel tips and tricks 201101
Office excel tips and tricks 201101Vishwanath Ramdas
1.5K vues39 diapositives
Whatsapp survery report par
Whatsapp survery  reportWhatsapp survery  report
Whatsapp survery reportKaran Kukreja
4.6K vues23 diapositives
Microsoft Excel- basics par
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basicsjeshin jose
1.7K vues58 diapositives
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx par
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxDishantGola
459 vues42 diapositives
X rec extened reconciliation using excel vba par
X rec   extened reconciliation using excel vbaX rec   extened reconciliation using excel vba
X rec extened reconciliation using excel vbasenthilsundaresan
690 vues8 diapositives

Similaire à Connecting to the StatXplore API in PowerBI(20)

1 Week 6 - What Well Be Working On This Week In th.docx par dorishigh
1 Week 6 - What Well Be Working On This Week  In th.docx1 Week 6 - What Well Be Working On This Week  In th.docx
1 Week 6 - What Well Be Working On This Week In th.docx
dorishigh2 vues
Microsoft Excel- basics par jeshin jose
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
jeshin jose1.7K vues
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx par DishantGola
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
DishantGola459 vues
How to use vlookup in MS Excel par Jaspal Singh
How to use vlookup in MS ExcelHow to use vlookup in MS Excel
How to use vlookup in MS Excel
Jaspal Singh342 vues
Handouts how to use microsoft access to combine cost and usage data for ejour... par Charleston Conference
Handouts how to use microsoft access to combine cost and usage data for ejour...Handouts how to use microsoft access to combine cost and usage data for ejour...
Handouts how to use microsoft access to combine cost and usage data for ejour...
Since the instructions for the final project are standardized and .docx par edgar6wallace88877
Since the instructions for the final project are standardized and .docxSince the instructions for the final project are standardized and .docx
Since the instructions for the final project are standardized and .docx
Share point ssis adapters 2011 par Krishna Na
Share point ssis adapters 2011Share point ssis adapters 2011
Share point ssis adapters 2011
Krishna Na1.1K vues
MS-EXCEL Assignment Help par Rahul Kataria
MS-EXCEL Assignment HelpMS-EXCEL Assignment Help
MS-EXCEL Assignment Help
Rahul Kataria13.2K vues
Introduction to SiteCatalyst ReportBuilder par Peter O'Neill
Introduction to SiteCatalyst ReportBuilderIntroduction to SiteCatalyst ReportBuilder
Introduction to SiteCatalyst ReportBuilder
Peter O'Neill8.5K vues
Create an Evaluation Matrix Chart in Excel that will let you com par co4spmeley
Create an Evaluation Matrix Chart in Excel that will let you comCreate an Evaluation Matrix Chart in Excel that will let you com
Create an Evaluation Matrix Chart in Excel that will let you com
co4spmeley34 vues
Stage 3 System Design SpecificationBefore you begin this as.docx par whitneyleman54422
Stage 3   System Design SpecificationBefore you begin this as.docxStage 3   System Design SpecificationBefore you begin this as.docx
Stage 3 System Design SpecificationBefore you begin this as.docx
4b6c1c5c-e913-4bbf-b3a4-41e23cb961ba-161004200047.pdf par Nitish Nagar
4b6c1c5c-e913-4bbf-b3a4-41e23cb961ba-161004200047.pdf4b6c1c5c-e913-4bbf-b3a4-41e23cb961ba-161004200047.pdf
4b6c1c5c-e913-4bbf-b3a4-41e23cb961ba-161004200047.pdf
Nitish Nagar10 vues
Developing a ssrs report using a ssas data source par relekarsushant
Developing a ssrs report using a ssas data sourceDeveloping a ssrs report using a ssas data source
Developing a ssrs report using a ssas data source
relekarsushant3.6K vues
Excel Datamining Addin Beginner par excel content
Excel Datamining Addin BeginnerExcel Datamining Addin Beginner
Excel Datamining Addin Beginner
excel content6.3K vues

Plus de Office for National Statistics

SlideShare ONS Economic Forum Slidepack - 13 November 2023 par
SlideShare ONS Economic Forum Slidepack - 13 November 2023SlideShare ONS Economic Forum Slidepack - 13 November 2023
SlideShare ONS Economic Forum Slidepack - 13 November 2023Office for National Statistics
68 vues40 diapositives
SlideShare ONS Economic Forum Slidepack - 16 October 2023 par
SlideShare ONS Economic Forum Slidepack - 16 October 2023SlideShare ONS Economic Forum Slidepack - 16 October 2023
SlideShare ONS Economic Forum Slidepack - 16 October 2023Office for National Statistics
11 vues36 diapositives
So what does ‘Beyond GDP’ mean for the UK – 12 October 2023 par
So what does ‘Beyond GDP’ mean for the UK – 12 October 2023So what does ‘Beyond GDP’ mean for the UK – 12 October 2023
So what does ‘Beyond GDP’ mean for the UK – 12 October 2023Office for National Statistics
158 vues37 diapositives
GDP after 2025: updating national accounts and balance of payments – 11 Octob... par
GDP after 2025: updating national accounts and balance of payments – 11 Octob...GDP after 2025: updating national accounts and balance of payments – 11 Octob...
GDP after 2025: updating national accounts and balance of payments – 11 Octob...Office for National Statistics
147 vues66 diapositives
SlideShare Measuring the Economy Slidepack - 29 September 2023 par
SlideShare Measuring the Economy Slidepack - 29 September 2023SlideShare Measuring the Economy Slidepack - 29 September 2023
SlideShare Measuring the Economy Slidepack - 29 September 2023Office for National Statistics
94 vues23 diapositives
Why dashboards? par
Why dashboards?Why dashboards?
Why dashboards?Office for National Statistics
8 vues3 diapositives

Plus de Office for National Statistics(20)

Dernier

PPT - SIGMA-GIZ Academies - Topic 4 - Georgia - User Feedback.pdf par
PPT - SIGMA-GIZ Academies - Topic 4 - Georgia - User Feedback.pdfPPT - SIGMA-GIZ Academies - Topic 4 - Georgia - User Feedback.pdf
PPT - SIGMA-GIZ Academies - Topic 4 - Georgia - User Feedback.pdfSupport for Improvement in Governance and Management SIGMA
50 vues37 diapositives
Mitchells_Burning_issue_.pptx par
Mitchells_Burning_issue_.pptxMitchells_Burning_issue_.pptx
Mitchells_Burning_issue_.pptxmryoung5
15 vues13 diapositives
Report of the Scientific Advisory Group on the status and developments regard... par
Report of the Scientific Advisory Group on the status and developments regard...Report of the Scientific Advisory Group on the status and developments regard...
Report of the Scientific Advisory Group on the status and developments regard...Christina Parmionova
5 vues40 diapositives
David Sinclair - Future of Ageing 2023 par
David Sinclair - Future of Ageing 2023David Sinclair - Future of Ageing 2023
David Sinclair - Future of Ageing 2023ILCUK
40 vues12 diapositives
COP28: Example of Formation of Negotiated Texts: Global StockTake par
COP28: Example of  Formation of Negotiated Texts: Global StockTakeCOP28: Example of  Formation of Negotiated Texts: Global StockTake
COP28: Example of Formation of Negotiated Texts: Global StockTakeEnergy for One World
17 vues24 diapositives

Dernier(20)

Mitchells_Burning_issue_.pptx par mryoung5
Mitchells_Burning_issue_.pptxMitchells_Burning_issue_.pptx
Mitchells_Burning_issue_.pptx
mryoung515 vues
Report of the Scientific Advisory Group on the status and developments regard... par Christina Parmionova
Report of the Scientific Advisory Group on the status and developments regard...Report of the Scientific Advisory Group on the status and developments regard...
Report of the Scientific Advisory Group on the status and developments regard...
David Sinclair - Future of Ageing 2023 par ILCUK
David Sinclair - Future of Ageing 2023David Sinclair - Future of Ageing 2023
David Sinclair - Future of Ageing 2023
ILCUK40 vues
COP28: Example of Formation of Negotiated Texts: Global StockTake par Energy for One World
COP28: Example of  Formation of Negotiated Texts: Global StockTakeCOP28: Example of  Formation of Negotiated Texts: Global StockTake
COP28: Example of Formation of Negotiated Texts: Global StockTake
MMF Newsletter Februar 2022.pdf par mmpcofficial
MMF Newsletter Februar 2022.pdfMMF Newsletter Februar 2022.pdf
MMF Newsletter Februar 2022.pdf
mmpcofficial7 vues
Stephen McPeake - Future of Ageing 2023 par ILCUK
Stephen McPeake - Future of Ageing 2023Stephen McPeake - Future of Ageing 2023
Stephen McPeake - Future of Ageing 2023
ILCUK32 vues
Monitoring and Evaluation Plan (Theory of change, results framework, Logframe... par Scoffy Wangang
Monitoring and Evaluation Plan (Theory of change, results framework, Logframe...Monitoring and Evaluation Plan (Theory of change, results framework, Logframe...
Monitoring and Evaluation Plan (Theory of change, results framework, Logframe...
MMF Newsletter March 2022.pdf par mmpcofficial
MMF Newsletter March 2022.pdfMMF Newsletter March 2022.pdf
MMF Newsletter March 2022.pdf
mmpcofficial22 vues
Assets of Community Value: From a Local Council Perspective par Scribe
 Assets of Community Value: From a Local Council Perspective Assets of Community Value: From a Local Council Perspective
Assets of Community Value: From a Local Council Perspective
Scribe 29 vues
Arunima Himawan - Future of Ageing 2023 par ILCUK
Arunima Himawan - Future of Ageing 2023Arunima Himawan - Future of Ageing 2023
Arunima Himawan - Future of Ageing 2023
ILCUK6 vues
Ending Stagnation: A New Economic Strategy for Britain par ResolutionFoundation
Ending Stagnation: A New Economic Strategy for BritainEnding Stagnation: A New Economic Strategy for Britain
Ending Stagnation: A New Economic Strategy for Britain

Connecting to the StatXplore API in PowerBI

  • 1. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Connecting to the StatXplore API using Power BI Introduction The StatXplore API allows users to retrieve data as it is updated. The response sent by the API can appear challenging to process, but data can be successfully extracted given the consistent layout of the response. The response layout requires two queries; one to retrieve labels for each of the fields requested (such as date or geography), plus an additional query for the data itself. These queries must be linked to use the labels alongside the data. This guide is split into two main sections: how to query the API and how to process the response. The Appendix contains examples of query bodies, a query template, and a full query example (excluding API Key). The method described in this guide was initially created with assistance from colleagues at IJYI.
  • 2. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Querying the StatXplore API Prerequisites To query the StatXplore API, you will need: a. A personal API Key. This is obtained by registering on the StatXplore website. Always use your personal API Key. If the user assigned to your API Key deregisters from StatXplore, your queries will not function. Once registered, your API Key can be found in the Account section of the website. Use the link in the top right once registered and logged in: b. The body of the query to send to the API. The easiest way to construct this is to use the StatXplore website to build the table of data you need, then export it as an Open Data API query (.json). Save this file so that you can refer to it later. This export will need further editing before use in a query, see Preparing the Query Body. c. A program to prepare the query body. Notepad++ is recommended, although alternative software can be used. d. A template to put your query body into. An example template can be found in the Appendix of this document.
  • 3. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Preparing the Query Body The .json file that is exported from StatXplore (see Prerequisites) must be edited before use. This needs to be done for each query that you use. See the finished Example query body (1) and Example query body (2) in the Appendix. 1. Open the .json file exported from StatXplore in step B of the Prerequisites in Notepad++. 2. Remove the text relating to date fields from the recodes section, but not from the dimensions section. This is done so that values from all dates are returned, not only those dates specified on the StatXplore website. Without this step, queries will not return new data. Remove the text from and including the comma preceding the date field name, up to and including the right parenthesis after the ‘total’ line of the date field (see examples below where the highlighted text should be deleted). 3. Remove the text relating to any other fields for which you want to return all available data rather than only the values initially specified. Use the same technique as above: remove the text from and including the comma preceding the field name, up to and including the right parenthesis after the ‘total’ line of the field. This could be used, for example, to see values for all the employment indicators for Alternative Claimant Count.
  • 4. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Remove the text relating to these fields from the recodes section, but not the dimensions section. Removing text from the dimensions section would remove this field from the query entirely. 4. Replace every instance of a speech mark (") with a double speech mark (""). Note that this must be the two vertical lines; using the quotation marks in Word (“ and ”) will not be recognised and will cause the query to fail.
  • 5. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Creating a Query 1. In Power BI desktop, add a new data source and use the Blank Query option. 2. With this new blank query created, open the Advanced Editor. Select everything in the box, delete it, then paste in the Query Template. 3. The query template creates the variables url, body and header: • url is the web address used for any query that aims to bring back data from the StatXplore API. This does not need to change. • body is the part of the query that tells the API which data to return. Paste your prepared query body between the speech marks in the body line. • header is where your personal API Key is added to authenticate access to the API. Paste your API key between the speech marks in the header line. The variable response uses the url, body and header variables as inputs to the Web.Contents function. response is returned as json using the Json.Document function. Click Done and wait for the response from the API. If your query has worked, you should see this:
  • 6. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk If so, you can now access and transform the data. If asked for credentials for this data source, select Anonymous credentials and Public privacy level.
  • 7. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Accessing and Transforming Data Overview The response from the API should look like this: The data returned by the query comes from the fields and cubes rows of this table. fields contains the labels for your dataset such as geography, date and sex. cubes contains the values of your dataset. The yellow words List and Record act as links and can be used to navigate through the json document. By default, there are no labels assigned to the values in the cubes section. The data is presented in a hierarchy, but there are no labels assigned to each level in the hierarchy. Fortunately, the response sent by the API will always follow a set of rules. The rules of the API response are: a. The hierarchy of data within the cubes is always in the same order as the List of fields. b. The labels for each field are always in the same order as the List of records within a field. These rules mean that, if expanded correctly, a flat table can be created with each combination of labels in the order that they occur in the data. The general process for this method is: 1. Transform the list of fields into a single row. 2. Expand each column, working from left to right, to obtain the labels. Each expansion will create new rows for each combination of existing labels and the newly expanded labels. 3. In a duplicate query, expand the list of values to new rows. Continue expanding to new rows until the data appears. 4. The order of rows in the labels and values tables is identical. Assign each row in both tables an index value to allow the tables to be merged or linked.
  • 8. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk 5. Merge the values table into the label table using the index columns and expand out the values column into the labels table. Alternatively, create a relationship between the index columns in the modelling view and use both tables. Worked Example: Households on Universal Credit To show more effectively how to transform the data, I have included a worked example of a connection to the database for Households on Universal Credit. This uses the example query in the Appendix. The step numbers correspond to the numbers from the Overview. Step 1: Transform the list of fields into a single row Begin from the response provided by the API (see Creating a Query). Click on the List in the fields row. From the Transform menu, select Convert To Table. This allows the Records to be manipulated. Expand the column of Records to get a List for the labels for each field (there are two in this example, area and date). Click the Expand button at the top right of the column. Select only the items checkbox, then click OK.
  • 9. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk The Lists need to be switched from rows to columns. Use the Transpose option from the Transform menu. There is now a column for each field in the query.
  • 10. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Step 2: Expand the labels table to obtain labels for each row Each column should now be expanded to obtain the labels for each field. The rows will be created in the order that they will appear in the data. As each column is expanded, new rows are added for each existing row. Click the Expand button at the top-right of the first column. Select Expand to New Rows. This will create a new row for each of the labels in this field. Then click the Expand button again and select only the Labels checkbox. Then click the Expand button for the third time and select Expand to New Rows.
  • 11. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk This has added to labels for the first field. Now, return to the start of this step and repeat the process for all the field columns, working from left to right, until the rightmost column has labels rather than Lists. When expanding each column to new rows for the first time, a new row will be created for each label within the new row, for each existing row. In this example, the expansion of the second column results in 76 rows for each of the existing rows (Babergh, East Suffolk et cetera) because the second field (month) has 76 labels. Once all the columns have been expanded and the labels are shown, the labels table expansion is complete. Each row will be a unique combination of labels which will appear in the same order as the values table. Rename the columns and change their types accordingly.
  • 12. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Step 3: Expand the values table Duplicate the previous query and delete all steps up to and including the ‘fields’ step. Navigate to the Record in the Cubes row. Then select the Record within that, then the List within that. This should display a List of Lists.
  • 13. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Next, convert this List to a table from the List Tools menu; click OK in the dialog box that appears. The table should now display one column with a List in each row. Each List must be expanded to get the data values. Click the expand button at the top-right of the column and select Expand to new rows. Repeat this until the data is displayed. The data is now displayed with a row for each value. These rows correspond exactly to the order of the rows in the labels table. Rename the values column and change its type accordingly.
  • 14. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Step 4: Create index columns The labels and values tables are now complete and ready to be linked. For both queries, add an index column using the button in the Add Column tab. Use the same settings for the index columns for both queries. The tables can now be linked using modelling (relationships) or transformations (merging queries).
  • 15. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Step 5a: Linking by merging tables To use the merging queries approach, open Transform data and select the labels table. From the Combine section of the Home tab, select Merge Queries. Select the index column from the labels table. Then select the values table from the first drop- down box and select the index column. A Left Outer join will be required as the aim is to add the value column from the values table to the labels table. All rows should match, if not there has been an error in the expansion of the tables or the indexes have been created using different settings. Click OK.
  • 16. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Click the expand button in the top-right of the new column. Expand out only the values column. This will add the values to the labels table, resulting in one table that can be used to filter and display data as required.
  • 17. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Step 5b: Linking by relationships To use the modelling approach, load the data and switch to the Model view. Click and drag the tables you will be using so that they are close together. Click and drag the index column from one table to the other. This will automatically create a relationship between these columns. The relationship should always be of the type 1:1. This will be automatically calculated. If the relationship is not of this type, there has been an error in the expansion of the tables or the indexes have been created using different settings. To make the report easier to use, hide the index columns from the report view using the eye icon. The fields from the labels table can now be used to filter and display the data in the values table.
  • 18. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Appendix Example query body (1) { ""database"" : ""str:database:UC_Households"", ""measures"" : [ ""str:count:UC_Households:V_F_UC_HOUSEHOLDS"" ], ""recodes"" : { ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" : { ""map"" : [ [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000200"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000244"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000202"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000203"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000245"" ] ], ""total"" : true } }, ""dimensions"" : [ [ ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" ], [ ""str:field:UC_Households:F_UC_DATE:DATE_NAME"" ] ] }
  • 19. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Example query body (2) { ""database"" : ""str:database:ACC"", ""measures"" : [ ""str:count:ACC:V_F_ACC"" ], ""recodes"" : { ""str:field:ACC:V_F_ACC:UK_COA"" : { ""map"" : [ [ ""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000200"" ], [ ""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000244"" ], [ ""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000202"" ], [ ""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000203"" ], [ ""str:value:ACC:V_F_ACC:UK_COA:V_C_MASTERGEOG11_LA_TO_REGION_NI:E07000245"" ] ], ""total"" : true } }, ""dimensions"" : [ [ ""str:field:ACC:V_F_ACC:UK_COA"" ], [ ""str:field:ACC:F_ACC_DATE_new:DATE_NAME"" ], [ ""str:field:ACC:V_F_ACC:EMP"" ] ] }
  • 20. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Full example query For privacy reasons the API key has been omitted. Copy and paste your personal API key between the speech marks after APIKey= to get this query to work. let url = "https://stat-xplore.dwp.gov.uk/webapi/rest/v1/table", body = "{ ""database"" : ""str:database:UC_Households"", ""measures"" : [ ""str:count:UC_Households:V_F_UC_HOUSEHOLDS"" ], ""recodes"" : { ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" : { ""map"" : [ [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000200"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000244"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000202"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000203"" ], [ ""str:value:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE:V_C_MASTERGEOG11_LA_TO_R EGION:E07000245"" ] ], ""total"" : true } }, ""dimensions"" : [ [ ""str:field:UC_Households:V_F_UC_HOUSEHOLDS:COA_CODE"" ], [ ""str:field:UC_Households:F_UC_DATE:DATE_NAME"" ] ] }", header = [ #"APIKey"="" ], response = Web.Contents(url,[Content=Text.ToBinary(body),Headers=header]), Source = Json.Document(response,1252) in
  • 21. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Source
  • 22. Public Health & Communities Analytics | Suffolk County Council | Version 3 (September 2023) phc_analytics@suffolk.gov.uk Query template let url = "https://stat-xplore.dwp.gov.uk/webapi/rest/v1/table", body = "", header = [ #"APIKey"="" ], response = Web.Contents(url,[Content=Text.ToBinary(body),Headers=header]), Source = Json.Document(response,1252) in Source