https://github.com/deriegle/dart-airtable
Dart library for integrating with the Airtable API
https://github.com/deriegle/dart-airtable
airtable api dart dart-airtable dartlang flutter
Last synced: about 2 months ago
JSON representation
Dart library for integrating with the Airtable API
- Host: GitHub
- URL: https://github.com/deriegle/dart-airtable
- Owner: deriegle
- License: bsd-2-clause
- Created: 2020-04-18T19:38:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T15:34:06.000Z (10 months ago)
- Last Synced: 2025-04-12T17:08:56.044Z (about 2 months ago)
- Topics: airtable, api, dart, dart-airtable, dartlang, flutter
- Language: Dart
- Homepage: https://pub.dev/packages/dart_airtable
- Size: 39.1 KB
- Stars: 8
- Watchers: 3
- Forks: 11
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Dart Airtable
A library for using the Airtable API in Dart & Flutter applications
## Usage
A simple usage example:
```dart
import 'package:dart_airtable/dart_airtable.dart';void main() async {
final apiKey = 'my-airtable-api-key'
final projectBase = 'my-airtable-project-base';
final recordName = 'Tasks';var airtable = Airtable(apiKey: apiKey, projectBase: projectBase);
var records = await airtable.getAllRecords(recordName);print(records);
}
```## Running the example
1. Create a `.env` file
```bash
cp .env.example .env
```2. Fill in your API Key, Project base key and Record Name in the `.env` file
3. Run the dart file
```bash
dart example/dart_airtable_example.dart
```## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/deriegle/dart-airtable/issues