webflow_client 0.1.8 copy "webflow_client: ^0.1.8" to clipboard
webflow_client: ^0.1.8 copied to clipboard

Webflow API v2 client for dart and flutter, uses light weight http package to make requests.

Webflow Dart Client Library #

A Dart client library for Webflow.

Usage #

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)
4
likes
150
points
64
downloads

Publisher

unverified uploader

Weekly Downloads

Webflow API v2 client for dart and flutter, uses light weight http package to make requests.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

http, json_annotation

More

Packages that depend on webflow_client