https://github.com/youssefegla/webflow_dart_client
https://github.com/youssefegla/webflow_dart_client
dart webflow
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/youssefegla/webflow_dart_client
- Owner: YoussefEgla
- License: mit
- Created: 2024-05-28T11:15:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T03:04:52.000Z (almost 2 years ago)
- Last Synced: 2025-10-23T03:58:21.317Z (6 months ago)
- Topics: dart, webflow
- Language: Dart
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Webflow Dart Client Library
A Dart client library for [Webflow](https://webflow.com/).
## Usage
```dart
import 'package:webflow_client/webflow_client.dart';
void main() async {
final client = WebflowClient('SITE_TOKEN');
final sites = await client.sites.listSites();
print(sites);
}
```
Currently support read-only operations:
- Sites
- List Sites
- Get Site
- List Custom Domains
- Pages
- List Pages
- Get Page Metadata
- Get Page Content
- Assets
- List Assets
- Get Asset
- Collections
- List Collections
- Get Collection
- List Collection Items (all/live)
- Get Collection Item (all/live)