tidal 0.3.0 copy "tidal: ^0.3.0" to clipboard
tidal: ^0.3.0 copied to clipboard

A Dart library for connecting to and interacting with the Tidal Developer Portal APIs.

Tidal Developer Portal API Library #

A Dart library for connecting to and interacting with the Tidal Developer Portal APIs.

Features #

  • Provides easy access to Tidal's API described on the Tidal Developer Portal.
  • Well-documented and structured for developer convenience.

Implemented APIs #

  • Authorization
  • Album API
  • Artist API
  • Track API
  • Video API
  • Search API

Getting Started #

Installation #

To use this library, add it to your pubspec.yaml:

dependencies:
  tidal: <latest-version>

Then run

dart pub get

Usage #

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.
}

Additional information #

1
likes
160
pub points
36%
popularity

Publisher

unverified uploader

A Dart library for connecting to and interacting with the Tidal Developer Portal APIs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

equatable, http

More

Packages that depend on tidal