https://github.com/xenoken/pixabay
Unofficial Pixabay REST API for the Dart Langauge.
https://github.com/xenoken/pixabay
dart dartlang pixabay pixabay-api rest-api
Last synced: about 2 months ago
JSON representation
Unofficial Pixabay REST API for the Dart Langauge.
- Host: GitHub
- URL: https://github.com/xenoken/pixabay
- Owner: xenoken
- License: bsd-3-clause
- Created: 2019-06-28T22:32:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-28T23:14:22.000Z (over 6 years ago)
- Last Synced: 2025-06-05T01:49:58.327Z (4 months ago)
- Topics: dart, dartlang, pixabay, pixabay-api, rest-api
- Language: Dart
- Size: 11.7 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
Unofficial Pixabay REST API for Dart
## Usage
A simple usage example:
```dart
import 'package:pixabay/pixabay.dart';main() async{
var client = new PixabayClient(APIKey.value);
var searchResult = await client.searchPhoto("aurora",
language: SupportedLanguages.en, imgType: ImageTypes.photo);
for (var p in searchResult.photos) {
print(p.imageUrl);
}
}
```## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/xenoken/pixabay/issues