{"id":26217274,"url":"https://github.com/janlukasschroeder/zacks-api","last_synced_at":"2025-07-14T00:04:09.352Z","repository":{"id":57405111,"uuid":"143503987","full_name":"janlukasschroeder/zacks-api","owner":"janlukasschroeder","description":"Zacks.com API","archived":false,"fork":false,"pushed_at":"2019-04-13T03:36:29.000Z","size":9,"stargazers_count":16,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-15T22:07:36.542Z","etag":null,"topics":["earnings-api","financial-analysis","fintech","zacks","zacks-api","zacks-rank"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/janlukasschroeder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-04T06:30:16.000Z","updated_at":"2025-03-28T20:24:52.000Z","dependencies_parsed_at":"2022-09-16T09:01:58.536Z","dependency_job_id":null,"html_url":"https://github.com/janlukasschroeder/zacks-api","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/janlukasschroeder/zacks-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janlukasschroeder%2Fzacks-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janlukasschroeder%2Fzacks-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janlukasschroeder%2Fzacks-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janlukasschroeder%2Fzacks-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/janlukasschroeder","download_url":"https://codeload.github.com/janlukasschroeder/zacks-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janlukasschroeder%2Fzacks-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265224093,"owners_count":23730336,"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":["earnings-api","financial-analysis","fintech","zacks","zacks-api","zacks-rank"],"created_at":"2025-03-12T12:26:20.225Z","updated_at":"2025-07-14T00:04:09.280Z","avatar_url":"https://github.com/janlukasschroeder.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zacks.com API\n\nThe API returns the Zacks rank (from 1 = strong buy, to 5 = strong sell)\nof any given company by providing the ticker of the company\n(e.g. `TSLA` for Tesla).\n\nSee here for more information on the Zacks rank: [www.zacks.com/education](https://www.zacks.com/education/stock-education)\n\n# Example Response for Tesla\n\n```json\n{\n  \"ticker\": \"TSLA\",\n  \"name\": \"Tesla, Inc.\",\n  \"zacksRankText\": \"Strong Sell\",\n  \"zacksRank\": \"5\",\n  \"updatedAt\": \"2019-04-12T05:58:00.000Z\"\n}\n```\n\n# Setup\n\nYou can use the API in the command line, or develop your own application\nusing the API as imported package. How to set up either option is explained\nbelow.\n\n## Prerequisite\n\n- Install Node.js if you haven't already. On Mac in the command line type `brew install node`. More information here: [nodejs.org](https://nodejs.org/en)\n\n## 1. Option: Command Line\n\nTo use the Zacks API via the command line, type in your command line\n\n- `npm install zacks-api --global` to install the package to access the API\n- `zacks-api TSLA` to get the Zacks rank of Tesla (ticker: TSLA)\n- Done! Now you should see the Zacks rank of Tesla.\n\n## 2. Option: Develop your own application\n\nTo set up a new Node.js project, type in the command line\n\n- `mkdir my-new-project \u0026\u0026 cd my-new-project` to create a new folder\n- `npm init` to scaffold the Node.js project\n- `touch index.js` to create the file `index.js`\n- `npm install zacks-api` to install the library to access the API\n- Copy/paste the example code below inside the `index.js` file\n\n```js\nconst api = require('zacks-api');\napi.getData('TSLA').then(console.log);\n```\n\n- `node index.js` to run the code inside the `index.js` file\n- Done! Now you should see the Zacks rank of Tesla.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanlukasschroeder%2Fzacks-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjanlukasschroeder%2Fzacks-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanlukasschroeder%2Fzacks-api/lists"}