degiro-api
Version:
Unofficial DeGiro API for Javascript. Buy and sell in the stock market. See your portfolio and much more
47 lines (43 loc) • 1.71 kB
text/typescript
// Import types
import { AccountConfigType, AccountDataType, GetAccountStateOptionsType } from '../types'
// Import debug console log
import { debug } from '../utils'
import { DEGIRO_API_PATHS } from '../enums/DeGiroEnums'
const { GET_ACCOUNT_STATE_PATH } = DEGIRO_API_PATHS
// tslint:disable-next-line: max-line-length
export function getAccountStateRequest(accountData: AccountDataType, accountConfig: AccountConfigType, config: GetAccountStateOptionsType): Promise<any[]> {
return new Promise((resolve, reject) => {
// Create params to get orders by types
const { from, to } = config
let params = ''
params += `fromDate=${encodeURIComponent(from)}&`
params += `toDate=${encodeURIComponent(to)}&`
params += `intAccount=${accountData.data.intAccount}&`
params += `sessionId=${accountConfig.data.sessionId}`
const requestOptions: {
method?: string,
body?: string,
headers: {
[key: string]: string,
},
credentials: 'include',
referer: string,
} = {
headers: {
Cookie: `JSESSIONID=${accountConfig.data.sessionId};`,
},
credentials: 'include',
referer: 'https://trader.degiro.nl/trader/',
}
// Do the request to get a account config data
const uri = `${accountConfig.data.reportingUrl}${GET_ACCOUNT_STATE_PATH}?${params}`
debug(`Making request to ${uri}`)
fetch(uri, requestOptions)
.then(res => res.json())
.then((res) => {
if (!res.data || !res.data.cashMovements || !Array.isArray(res.data.cashMovements)) return reject('DeGiro response does not match with know scheme')
resolve(res.data.cashMovements)
})
.catch(reject)
})
}