{"id":23276715,"url":"https://github.com/shoriwe/tulip","last_synced_at":"2026-04-28T08:03:00.267Z","repository":{"id":65184836,"uuid":"583515361","full_name":"shoriwe/tulip","owner":"shoriwe","description":"Extensible market data REST API, cache and Dashboard","archived":false,"fork":false,"pushed_at":"2023-02-04T16:31:03.000Z","size":5845,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T18:10:39.305Z","etag":null,"topics":["apache-echarts","cache","finnhub","go","golang","stock-market","svelte","sveltekit","yahoo-finance"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shoriwe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-12-30T02:22:13.000Z","updated_at":"2025-08-11T15:45:31.000Z","dependencies_parsed_at":"2023-02-18T18:00:51.481Z","dependency_job_id":null,"html_url":"https://github.com/shoriwe/tulip","commit_stats":null,"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"purl":"pkg:github/shoriwe/tulip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shoriwe%2Ftulip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shoriwe%2Ftulip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shoriwe%2Ftulip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shoriwe%2Ftulip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shoriwe","download_url":"https://codeload.github.com/shoriwe/tulip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shoriwe%2Ftulip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32371673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["apache-echarts","cache","finnhub","go","golang","stock-market","svelte","sveltekit","yahoo-finance"],"created_at":"2024-12-19T21:36:16.363Z","updated_at":"2026-04-28T08:03:00.241Z","avatar_url":"https://github.com/shoriwe.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tulip\n\n[![Build](https://github.com/shoriwe/tulip/actions/workflows/build.yaml/badge.svg)](https://github.com/shoriwe/tulip/actions/workflows/build.yaml)\n[![codecov](https://codecov.io/gh/shoriwe/tulip/branch/main/graph/badge.svg?token=3XP6AV109Z)](https://codecov.io/gh/shoriwe/tulip)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/shoriwe/tulip)\n[![Go Report Card](https://goreportcard.com/badge/github.com/shoriwe/tulip)](https://goreportcard.com/report/github.com/shoriwe/tulip)\n\n\u003cp align=\"center\"\u003e\n    \u003cimg style=\"width: 50%; height: auto;\" src=\"logo.png\"/\u003e\n\u003c/p\u003e\nExtensible market data REST API, made with the intention to interact with multiple market data sources but using the same interface for all.\n\n## Running with Yahoo finance as data source\n\n```shell\ntulip yahoo\n```\n\n## Dashboard preview\n\n![image-20230112102648846](docs/assets/image-20230112102648846.png)\n\n## Components preview\n\n| ![recommendation-trends](docs/assets/image-20230109133611842.png) | ![Peers](docs/assets/image-20230107193602052.png)   |\n| ------------------------------------------------------------ | --------------------------------------------------- |\n| ![Candles](docs/assets/image-20230107210247207.png)          | ![heatmap](docs/assets/image-20230109203313081.png) |\n\n## Extending tulip\n\nTo extend tulip you can write your own `Source` interface implementations, querying for the necessary data sources you need, such as Yahoo finance API...\n\n## Documentation\n\n| Documentation     | URL                                                          |\n| ----------------- | ------------------------------------------------------------ |\n| Components        | [docs/Components.md](docs/Components.md)                     |\n| OpenAPI           | [docs/api.openapi.yaml](docs/api.openapi.yaml)               |\n| Library           | [https://pkg.go.dev/github.com/shoriwe/tulip](https://pkg.go.dev/github.com/shoriwe/tulip) |\n| CLI               | [docs/CLI.md](docs/CLI.md)                                   |\n| JavaScript client | **Coming soon...**                                           |\n\n## REST API Clients\n\nComing soon...\n\n## Binaries\n\nYou will find pre-build binaries at the [release](https://github.com/shoriwe/tulip/releases) section. If none of these binaries targets your platform use [Go command](#Go-command)\n\n## Docker image\n\n```shell\ndocker pull ghcr.io/shoriwe/tulip:latest\n```\n\n## Building from source\n\n### Go command\n\n```shell\ngo install github.com/shoriwe/tulip@latest\n```\n\n### Local build\n\n```shell\ngit clone https://github.com/shoriwe/tulip\ncd tulip\nmkdir -p bin \u0026\u0026 go build -o bin/ .\n```\n\n### Docker image\n\n```shell\ngit clone https://github.com/shoriwe/tulip\ncd tulip\ndocker build -t tulip .\n```\n\n## Contributing\n\nConsider giving this repository a star if it was useful to you.\n\n- Contributions are always welcome check [CONTRIBUTING.md](CONTRIBUTING.md) for more information.\n\n- If you have any new idea you can open an Issue and I will try my best to make it available in the project.\n- If you have code ready to merge please create a PR.\n\n## Coverage\n\n\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"coverage-graph\" src=\"https://codecov.io/gh/shoriwe/tulip/branch/main/graphs/sunburst.svg?token=3XP6AV109Z\"/\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshoriwe%2Ftulip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshoriwe%2Ftulip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshoriwe%2Ftulip/lists"}