A Dart library for connecting to and interacting with the Tidal Developer Portal APIs.
- Provides easy access to Tidal's API described on the Tidal Developer Portal.
- Well-documented and structured for developer convenience.
- Authorization
- Album API
- Artist API
- Track API
- Video API
- Search API
To use this library, add it to your pubspec.yaml
:
dependencies:
tidal: <latest-version>
Then run
dart pub get
You can start using the library by initializing a Tidal instance and making requests to Tidal's API. Here's a basic example:
import 'package:tidal/tidal.dart';
void main() async {
final clientId = 'your_client_id';
final clientSecret = 'your_client_secret';
final tidal = await Tidal.initialize(clientId: clientId, clientSecret: clientSecret);
// Use the Tidal instance to interact with the API.
}
- For more information on the available APIs, visit Tidal Devloper Portal.
- Contributions are welcome, visit the GitHub repo page.
- File issues or provide feedback on the GitHub issue tracker.