An open API service indexing awesome lists of open source software.

https://github.com/youssefegla/webflow_dart_client


https://github.com/youssefegla/webflow_dart_client

dart webflow

Last synced: 6 months ago
JSON representation

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)