Performance since launch endpoint
General information
GET
/api/v1/performance-launch/ISIN/
Params
Param | Description | Notice |
---|---|---|
isin | International Securities Identification Number (ISIN) | Mandatory This is part of the endpoint's URL. |
format | Format of the response data (json or xml ) |
Not necessary to provide as URL part. When provided it will overwrite the Accept-Header. |
Response data
Field | Type | Description |
---|---|---|
fund | Object | List of basic fund data (see details) |
performance | Object{} | Object/list of days (microseconds since 1970-01-01) and performance |
Example response (JSON)
GET
/api/v1/performance-launch/DE0008479023/?format=json
{
"fund": {
"name": "HANSAsecur",
"isin": "DE0008479023",
"wkn": "847902",
"fund_inception_date": "1970-01-02",
"status_date": "2023-03-16",
"url": "https://fondswelt.hansainvest.com/de/fonds/details/6"
},
"performance": [
{
"x": 86400000,
"y": 100
},
{
"x": 345600000,
"y": 100
},
{
"x": 432000000,
"y": 100
},
{
"x": 518400000,
"y": 100
},
{
"x": 604800000,
"y": 100
},
/*
* stripped lots of lines
*/
{
"x": 1541376000000,
"y": 1276.0191984025
},
{
"x": 1541462400000,
"y": 1267.3383517505
},
{
"x": 1541548800000,
"y": 1267.9257773974
},
{
"x": 1541635200000,
"y": 1278.2383621923
},
{
"x": 1541721600000,
"y": 1274.6159035709
},
{
"x": 1541980800000,
"y": 1269.8838630951
},
{
"x": 1542067200000,
"y": 1240.6104814888
},
{
"x": 1542153600000,
"y": 1251.7389354113
}
]
}
Example response (XML)
GET
/api/v1/performance-launch/DE0008479023/?format=xml
<?xml version="1.0"?>
<root>
<fund>
<name>HANSAsecur</name>
<isin>DE0008479023</isin>
<wkn>847902</wkn>
<fund_inception_date>1970-01-02</fund_inception_date>
<status_date>2023-03-16</status_date>
<url>https://fondswelt.hansainvest.com/de/fonds/details/6</url>
</fund>
<performance>
<item key="0">
<x>86400000</x>
<y>100</y>
</item>
<item key="1">
<x>345600000</x>
<y>100</y>
</item>
<item key="2">
<x>432000000</x>
<y>100</y>
</item>
<item key="3">
<x>518400000</x>
<y>100</y>
</item>
<item key="4">
<x>604800000</x>
<y>100</y>
</item>
<item key="5">
<x>691200000</x>
<y>100</y>
</item>
<item key="6">
<x>950400000</x>
<y>100</y>
</item>
<item key="7">
<x>1036800000</x>
<y>100</y>
</item>
<item key="8">
<x>1123200000</x>
<y>100</y>
</item>
<item key="9">
<x>1209600000</x>
<y>100</y>
</item>
<item key="10">
<x>1296000000</x>
<y>100</y>
</item>
<item key="11">
<x>1555200000</x>
<y>100</y>
</item>
<item key="12">
<x>1641600000</x>
<y>100</y>
</item>
<item key="13">
<x>1728000000</x>
<y>100</y>
</item>
<item key="14">
<x>1814400000</x>
<y>100</y>
</item>
<item key="15">
<x>1900800000</x>
<y>100</y>
</item>
<item key="16">
<x>2160000000</x>
<y>100</y>
</item>
<!-- stripped lots of lines -->
<item key="12380">
<x>1541548800000</x>
<y>1267.9257773974</y>
</item>
<item key="12381">
<x>1541635200000</x>
<y>1278.2383621923</y>
</item>
<item key="12382">
<x>1541721600000</x>
<y>1274.6159035709</y>
</item>
<item key="12383">
<x>1541980800000</x>
<y>1269.8838630951</y>
</item>
<item key="12384">
<x>1542067200000</x>
<y>1240.6104814888</y>
</item>
<item key="12385">
<x>1542153600000</x>
<y>1251.7389354113</y>
</item>
</performance>
</root>
Errors
Code | Problem | Description |
---|---|---|
404 | No performance data (full) found for this fund: [ISIN] | The requested performance data (full) for this fund does not exist or shall not be displayed. |
403 | It is not permitted to get performance data for the fund with ISIN: [ISIN], because this fund is not yet one year old. | The requested performance data (full) for this fund shall not be displayed, because it is not yet one year old. |
Error response (example)
{
"title": "No performance data (full) found for this fund: ISIN",
"type": "https://api.hansainvest.com/docs/v1/endpoints/performance-launch/#error-404-nodata",
"status": 404
}