{"id":15679394,"url":"https://github.com/4xposed/rstidal","last_synced_at":"2026-03-14T15:37:25.041Z","repository":{"id":37177988,"uuid":"293866791","full_name":"4xposed/rstidal","owner":"4xposed","description":"Asynchronous client for the Tidal API ","archived":false,"fork":false,"pushed_at":"2023-03-24T23:56:47.000Z","size":180,"stargazers_count":13,"open_issues_count":11,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-08T20:52:47.338Z","etag":null,"topics":["api","async","rust","tidal"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/4xposed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-09-08T16:28:35.000Z","updated_at":"2024-11-26T19:08:33.000Z","dependencies_parsed_at":"2025-05-06T20:45:37.172Z","dependency_job_id":"f82a8057-7186-43a7-9557-13a94d97288c","html_url":"https://github.com/4xposed/rstidal","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/4xposed/rstidal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4xposed%2Frstidal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4xposed%2Frstidal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4xposed%2Frstidal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4xposed%2Frstidal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/4xposed","download_url":"https://codeload.github.com/4xposed/rstidal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4xposed%2Frstidal/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264808897,"owners_count":23667138,"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":["api","async","rust","tidal"],"created_at":"2024-10-03T16:30:13.136Z","updated_at":"2026-03-14T15:37:20.003Z","avatar_url":"https://github.com/4xposed.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Rust](https://github.com/4xposed/rstidal/workflows/Rust/badge.svg?branch=master)\n[![Crates.io](https://img.shields.io/crates/v/rstidal.svg)](https://crates.io/crates/rstidal)\n[![Docs](https://docs.rs/rstidal/badge.svg)](https://docs.rs/crate/rstidal/)\n\n# Rstidal\n\nUnofficial Rust API wrapper for TIDAL music streaming service. Inspired by [rspotify](https://github.com/ramsayleung/rspotify)\n\n## Configuration\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\nrstidal = \"0.1.2\"\n```\n\nBy default, Rstidal uses asynchronous programming with `asycn` and `await`.\n\n## Getting Started\n\n## Authorization\n\nSince all methods required user authentication, you are required to create a\nsession using a Tidal username and password.\nIn order to authenticate a user your application needs an Application Token.\n\n\n## How to get an Application Token\n\nUsing a debug proxy (Charles or Fiddler) open your Tidal Desktop application, look for\nrequests to `api.tidal.com` and copy the value it uses in the header `X-Tidal-Token`.\n\n### Examples\n\n```toml\n[dependencies]\nrstidal = { version = \"0.1.0\" }\ntokio = { version = \"0.2\", features = [\"full\"] }\n```\n\n```rust\nuse rstidal::client::Tidal;\nuse rstidal::auth::TidalCredentials;\nuse dotenv::dotenv;\nuse std::env;\n\n#[tokio::main]\nasync fn main() {\n  {\n    dotenv().ok();\n  }\n\n  // Set the token aquired by inspecting your Tidal Desktop application.\n  let token = env::var(\"RSTIDAL_APP_TOKEN\").unwrap();\n  let credentials = TidalCredentials::new(\u0026token);\n\n  // Create a session using your user credentials.\n  let username = env::var(\"RSTIDAL_USERNAME\").unwrap();\n  let password = env::var(\"RSTIDAL_PASSWORD\").unwrap();\n  let credentials = credentials.create_session(\u0026username, \u0026password).await;\n\n  // Use the credentials to start the client\n  let client = Tidal::new(credentials);\n  let artist = client.artists.get(\"37312\").await;\n  println!(\"{:?}\", artist.unwrap());\n}\n```\n\n## Contributing\n\nIf you find any problems or have suggestions about this crate, please submit an issue. Moreover, any pull request, code review and feedback are welcome\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F4xposed%2Frstidal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F4xposed%2Frstidal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F4xposed%2Frstidal/lists"}