> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.webflow.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.webflow.com/_mcp/server.

# List Collections

GET https://api.webflow.com/v2/sites/{site_id}/collections

List of all Collections within a Site.

Required scope | `cms:read`


Reference: https://developers.webflow.com/data/reference/cms/collections/list

## Authentication

- `Authorization` header (bearer token, required)

## Request

### Path parameters

- `site_id` (string, required) — Unique identifier for a Site

## Response

### 200

Request was successful

- `collections` (list of object, optional) — An array of Collections
  - `id` (string, required) — Unique identifier for a Collection
  - `displayName` (string, optional) — Name given to the Collection
  - `singularName` (string, optional) — The name of one Item in Collection (e.g. ”Blog Post” if the Collection is called “Blog Posts”)
  - `slug` (string, optional) — Slug of Collection in Site URL structure
  - `createdOn` (string, optional) — The date the collection was created
  - `lastUpdated` (string, optional) — The date the collection was last updated

## Examples

**Response**

```json
{
  "collections": [
    {
      "id": "63692ab61fb2852f582ba8f5",
      "displayName": "Products",
      "singularName": "Product",
      "slug": "product",
      "createdOn": "2019-06-12T13:35:14.238Z",
      "lastUpdated": "2022-11-17T15:08:50.480Z"
    },
    {
      "id": "63692ab61fb2856e6a2ba8f6",
      "displayName": "Categories",
      "singularName": "Category",
      "slug": "category",
      "createdOn": "2019-06-12T13:35:14.238Z",
      "lastUpdated": "2022-11-17T15:08:50.481Z"
    },
    {
      "id": "63692ab61fb285a8562ba8f4",
      "displayName": "SKUs",
      "singularName": "SKU",
      "slug": "sku",
      "createdOn": "2019-06-12T13:35:14.238Z",
      "lastUpdated": "2022-11-17T15:08:50.478Z"
    }
  ]
}
```

**SDK Code**

```typescript
import { WebflowClient } from "webflow-api";

async function main() {
    const client = new WebflowClient({
        accessToken: "YOUR_TOKEN_HERE",
    });
    await client.collections.list("580e63e98c9a982ac9b8b741");
}
main();

```

```python
from webflow import Webflow

client = Webflow(
    access_token="YOUR_TOKEN_HERE",
)

client.collections.list(
    site_id="580e63e98c9a982ac9b8b741",
)

```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.webflow.com/v2/sites/580e63e98c9a982ac9b8b741/collections")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```