{"id":15581877,"url":"https://github.com/tkp-archive/iexjs","last_synced_at":"2025-10-13T02:30:22.126Z","repository":{"id":38402778,"uuid":"336175798","full_name":"tkp-archive/iexjs","owner":"tkp-archive","description":"Javascript interface to IEX and IEX cloud APIs","archived":true,"fork":false,"pushed_at":"2024-04-10T22:44:24.000Z","size":1753,"stargazers_count":50,"open_issues_count":0,"forks_count":10,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-02T19:58:50.176Z","etag":null,"topics":["algorithmic-trading","finance","financial-analysis","iex","javascript","stock-data","stock-market","stocks"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tkp-archive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-05T05:40:57.000Z","updated_at":"2024-07-24T02:26:15.000Z","dependencies_parsed_at":"2023-02-07T07:01:14.675Z","dependency_job_id":"e4a7575c-5dc5-4605-b78f-3ad9dc09816a","html_url":"https://github.com/tkp-archive/iexjs","commit_stats":{"total_commits":238,"total_committers":5,"mean_commits":47.6,"dds":0.1470588235294118,"last_synced_commit":"0c65da4eb9af36a09b043990c4751d441ab0d95d"},"previous_names":["tkp-archive/iexjs"],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkp-archive%2Fiexjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkp-archive%2Fiexjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkp-archive%2Fiexjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkp-archive%2Fiexjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkp-archive","download_url":"https://codeload.github.com/tkp-archive/iexjs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236293617,"owners_count":19125693,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["algorithmic-trading","finance","financial-analysis","iex","javascript","stock-data","stock-market","stocks"],"created_at":"2024-10-02T19:58:56.908Z","updated_at":"2025-10-13T02:30:16.779Z","avatar_url":"https://github.com/tkp-archive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚨 This library is no longer actively maintained 🚨\n\n# \u003cimg src=\"https://raw.githubusercontent.com/timkpaine/iexjs/main/docs/img/icon.png\" width=\"300\"\u003e\n\nJavaScript interface to [IEX Cloud](https://iexcloud.io/docs/api/)\n\n[![Build Status](https://github.com/timkpaine/iexjs/workflows/Build%20Status/badge.svg?branch=main)](https://github.com/timkpaine/iexjs/actions?query=workflow%3A%22Build+Status%22)\n[![License](https://img.shields.io/github/license/timkpaine/iexjs.svg)](https://github.com/timkpaine/iexjs/)\n[![npm](https://img.shields.io/npm/v/iexjs)](https://www.npmjs.com/package/iexjs)\n\n## Install\n\nInstall from npm\n\n`npm install --save iexjs`\n\n`iexjs` can run in the browser via native `fetch` and `eventsource`, or from node via [cross-fetch](https://www.npmjs.com/package/cross-fetch) and [eventsource](https://github.com/EventSource/eventsource).\n\n## Overview\n\n`iexjs` supports the IEX Cloud api through 2 interfaces. The first is a simple function call, passing in the api version and token as arguments\n\n```javascript\nconst {chart} = require(\"iexjs\");\nchart({symbol: \"AAPL\", range: \"1m\"}, {token, version}).then((res) =\u003e {\n    console.log(res);\n});\n```\n\nSince the token rarely changes, we have a `Client` object for convenience:\n\n```javascript\nconst {Client} = require(\"iexjs\");\nconst client = new Client({api_token: \"YOUR_TOKEN_HERE\", version: \"v1\"});\nclient.chart({symbol: \"AAPL\", range: \"1m\"}).then((res) =\u003e {\n    console.log(res);\n});\n```\n\nThe client will automatically pick up the API key from the environment variable `IEX_TOKEN`, or it can be passed as an argument. To use the IEX Cloud test environment, simple set `version: 'sandbox'`.\n\n### Full API\n`iexjs` provides wrappers around both static and SSE streaming data. Implemented methods are provided in [CATALOG.md](CATALOG.md).\n\n## License\n\nThis software is licensed under the Apache 2.0 license. See the\n[LICENSE](LICENSE) and [AUTHORS](AUTHORS) files for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkp-archive%2Fiexjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkp-archive%2Fiexjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkp-archive%2Fiexjs/lists"}