Advertisement
Guest User

Untitled

a guest
Jul 26th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. Aktienkurse bei Onvist abrufen:
  2. Allgemein:
  3. - Markplätze:
  4. _GER = Xetra
  5. _GAT = Tradegate
  6. - Stock / Fund IDs:
  7. Xetra = targetUnderlyingEntityValue
  8. Tradegate = contentEntityValue
  9. ETFS:
  10.  
  11. Paramter alle via Quellcode lesbar:
  12. - idInstrument
  13. - "market":{"name":" --> meist _GER
  14. - idNotation
  15. Historische Kurse via:
  16. URL: https://api.onvista.de/api/v1/instruments/FUND/${idInstrument}/eod_history?idNotation=${idNotation}&range=Y5&startDate={TODAY:yyyy-MM-dd:-P5Y}
  17. Pfad zu Datum: $.datetimeLast[*]
  18. Datumsformat: -
  19. Pfad zu Kurs: $.last[*]
  20. Pfad zu Tagestief: $.low[*]
  21. Pfad zu Tageshoch: $.high[*]
  22. Pfad zu Volumen: $.volume[*]
  23. Aktuelle Kurse via:
  24. URL: https://api.onvista.de/api/v1/instruments/FUND/${idInstrument}/quote?codeMarket=_GER
  25. Pfad zu Datum: $.datetimeLast
  26. Datumsformat: -
  27. Pfad zu Kurs: $.last
  28. Pfad zu Tagestief: $.low
  29. Pfad zu Tageshoch: $.high
  30. Pfad zu Volumen: $.volume
  31.  
  32. Beispiel: Vanguard FTSE All-World
  33. - idInstrument: 40773086
  34. - "market":{"name":" _GER
  35. - idNotation: 201301177
  36. Historisch: https://api.onvista.de/api/v1/instruments/FUND/40773086/eod_history?idNotation=201301177&range=Y5&startDate={TODAY:yyyy-MM-dd:-P5Y}
  37. Aktuell: https://api.onvista.de/api/v1/instruments/FUND/40773086/quote?codeMarket=_GER
  38.  
  39. Aktien:
  40.  
  41. Paramter via Quellcode lesbar, idNotation über Dropdown des Markplatzes aus der URL kopieren
  42. - targetUnderlyingEntityValue
  43. - "market":{"name":" --> meist _GER
  44. - notation --> muss zum Market Passen bei Xetra = _GER
  45. Historische Kurse via:
  46. URL: https://api.onvista.de/api/v1/instruments/STOCK/${targetUnderlyingEntityValue}/eod_history?idNotation=${notation}&range=Y5&startDate={TODAY:yyyy-MM-dd:-P5Y}
  47. Pfad zu Datum: $.datetimeLast[*]
  48. Datumsformat: -
  49. Pfad zu Kurs: $.last[*]
  50. Pfad zu Tagestief: $.low[*]
  51. Pfad zu Tageshoch: $.high[*]
  52. Pfad zu Volumen: $.volume[*]
  53. Aktuelle Kurse via:
  54. URL: https://api.onvista.de/api/v1/instruments/STOCK/${targetUnderlyingEntityValue}/quote?codeMarket=_GER
  55. Pfad zu Datum: $.datetimeLast
  56. Datumsformat: -
  57. Pfad zu Kurs: $.last
  58. Pfad zu Tagestief: $.low
  59. Pfad zu Tageshoch: $.high
  60. Pfad zu Volumen: $.volume
  61.  
  62. Beispiel: adidas
  63. - targetUnderlyingEntityValue: 36714349
  64. - "market":{"name":" _GER
  65. - notation: 39471840
  66. Historisch: https://api.onvista.de/api/v1/instruments/STOCK/36714349/eod_history?idNotation=39471840&range=Y5&startDate={TODAY:yyyy-MM-dd:-P5Y}
  67. Aktuell: https://api.onvista.de/api/v1/instruments/STOCK/36714349/quote?codeMarket=_GER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement