Webflow api cms link

Anyone know a way to hit a Webflow api link directly to return all the items in a collection displayed in JSON data format

Something like this?
https://api.webflow.com/sites/580e63e98c9a982ac9b8b741/collections.

Looking to integrate Places API with Webflow CMS API, but not able to pull the Webflow CMS API data.


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

This?
https://developers.webflow.com/#get-collection-with-full-schema

@HammerOz Thanks for responding.

My problem is how do I get the api link to display the data from my collection list within webflow custom code, is this possible? Can I use javascript or jquery to make a call to this?

If you hit this link by itself it returns the below
https://api.webflow.com/collections/580e63fc8c9a982ac9b8b745

{
“msg”: “No API version specified on request”,
“code”: 400,
“name”: “InvalidAPIVersion”,
“path”: “/collections/580e63fc8c9a982ac9b8b745”,
“err”: “InvalidAPIVersion: No API version specified on request”
}

You need to pass the below HTTP headers in the call:

  1. accept-version: 1.0.0
  2. Authorization: Bearer <your API token>

If you’re attempting to do this form the front end, client side, you can’t even through it’s Javascript. You need to do it from a backend, like node (or Integromat, Zapier, etc…).