{"id":17438610,"url":"https://github.com/blixt/go-spotify","last_synced_at":"2026-01-22T14:59:58.584Z","repository":{"id":4416510,"uuid":"5554190","full_name":"blixt/go-spotify","owner":"blixt","description":"Simple Go library for the Spotify API","archived":false,"fork":false,"pushed_at":"2012-08-25T19:15:05.000Z","size":92,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-11T15:58:39.848Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/blixt.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":"2012-08-25T19:14:10.000Z","updated_at":"2014-02-18T10:43:33.000Z","dependencies_parsed_at":"2022-09-20T23:10:47.885Z","dependency_job_id":null,"html_url":"https://github.com/blixt/go-spotify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blixt/go-spotify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blixt%2Fgo-spotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blixt%2Fgo-spotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blixt%2Fgo-spotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blixt%2Fgo-spotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blixt","download_url":"https://codeload.github.com/blixt/go-spotify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blixt%2Fgo-spotify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28664827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T14:01:31.714Z","status":"ssl_error","status_checked_at":"2026-01-22T13:59:23.143Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-10-17T12:38:29.465Z","updated_at":"2026-01-22T14:59:58.558Z","avatar_url":"https://github.com/blixt.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go Spotify\n\nThis is a simple module to communicate with the Spotify API.\n\n**Note:** This is library is currently very simple and only supports a few\nrequests.\n\n## Installation\n\n    go get github.com/blixt/go-spotify/spotify\n\n## Examples\n\n### Perform parallel search queries\n\n    package main\n    \n    import (\n    \t\"fmt\"\n    \t\"github.com/blixt/go-spotify/spotify\"\n    )\n    \n    func main() {\n    \tapi := spotify.GetApi()\n    \n    \tqueries := make(chan *spotify.SearchTrackQuery)\n    \n    \t// Make two search queries in parallel.\n    \tgo api.SearchTrack(\"never gonna give you up\", queries)\n    \tgo api.SearchTrack(\"trololo\", queries)\n    \n    \t// Print the first track of each query result.\n    \tfor i := 0; i \u003c 2; i++ {\n    \t\tquery := \u003c-queries\n    \t\tfmt.Printf(\"Got %d results for \\\"%s\\\". First result:\\n\", query.Info.NumResults, query.Query)\n    \n    \t\ttrack := query.Tracks[0]\n    \t\tfmt.Println(track.Href, track.Name, \"by\", track.Artists[0].Name)\n    \t}\n    }\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblixt%2Fgo-spotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblixt%2Fgo-spotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblixt%2Fgo-spotify/lists"}