Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 959 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 959 Bytes

Investing.com unofficial APIs

Node.js CI Maintainability Donate

Unofficial APIs for Investing.com website.

Install

npm i investing-com-api

Example

const { investing } = require('investing-com-api')

async function main () {
  const response = await investing('currencies/eur-usd')
  // response = [ { date: Timestamp, value: Number }, {...}, ... ]
}

Available inputs

Run tests

  • npm test

Run lint

  • npm run lint

Author