Skip to content

index normalized

valueguard edited this page Oct 21, 2024 · 11 revisions

The code below gives an example of how to use the client to get index data

import valueguard

vgClient = valueguard.Client()
vgClient.authenticate("<username>", "<password>")

print(vgClient.index_normalized(search_criteria={
    "id":110001800403
}))

Required search criteria fields

Field name Description Example
id Index id 110001800403

Optional search criteria fields

Field name Description Example
reference_date Reference date 2017-12-24
reference_value Reference value 157

Raw request

Get

curl https://api.valueguard.se/v1/index/normalized?access_token={access_token}&id={id}
Clone this wiki locally