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

# List teams

GET https://api.modulards.com/api/public/v1/teams

Lists the teams the token can reach, one JSON:API resource per team, with standard pagination.

Public filters: `id[]` (team ids) and `s` for a free-text search on the name.

Public sorts: `name` (default, ascending) and `created_at` - prefix with `-` for descending.

`sites_count`, how many websites belong to the team, is a computed attribute: request it with `fields[teams]=sites_count`.

Default page size is 15, capped at 50 (`page[size]`).

Reference: https://api.docs.modulards.com/modular-ds-public-api/websites/list-teams

## Authentication

- `Authorization` header (bearer token, required) — Personal access token created in the Modular DS dashboard; read-only tokens can only call GET endpoints.

## Request

### Query parameters

- `page[number]` (string, optional)
- `page[size]` (string, optional)
- `sort` (string, optional)
- `filter[s]` (string, optional)
- `filter[id][]` (string, optional)

## Response

### 200

200 - Teams

- `data` (list of object, optional)
  - `attributes` (object, optional)
    - `created_at` (string, optional)
    - `name` (string, optional)
    - `slug` (string, optional)
    - `updated_at` (string, optional)
  - `id` (string, optional)
  - `links` (object, optional)
    - `self` (string, optional)
  - `type` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)
- `links` (object, optional)
  - `first` (string, optional)
  - `last` (string, optional)
  - `next` (any, optional, nullable)
  - `prev` (any, optional, nullable)
- `meta` (object, optional)
  - `current_page` (double, optional)
  - `from` (double, optional)
  - `last_page` (double, optional)
  - `links` (list of object, optional)
    - `active` (boolean, optional)
    - `label` (string, optional)
    - `url` (string, optional, nullable)
  - `path` (string, optional)
  - `per_page` (double, optional)
  - `to` (double, optional)
  - `total` (double, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "attributes": {
        "created_at": "2026-01-14T09:30:00.000000Z",
        "name": "Default team",
        "slug": "default-team",
        "updated_at": "2026-01-14T09:30:00.000000Z"
      },
      "id": "7",
      "links": {
        "self": "https://api.modulards.com/api/public/v1/teams/7"
      },
      "type": "teams"
    },
    {
      "attributes": {
        "created_at": "2026-09-17T17:45:44.000000Z",
        "name": "New clients",
        "slug": "new-clients",
        "updated_at": "2026-09-17T17:45:44.000000Z"
      },
      "id": "8",
      "links": {
        "self": "https://api.modulards.com/api/public/v1/teams/8"
      },
      "type": "teams"
    }
  ],
  "jsonapi": {
    "version": "1.1"
  },
  "links": {
    "first": "https://api.modulards.com/api/public/v1/teams?page%5Bnumber%5D=1",
    "last": "https://api.modulards.com/api/public/v1/teams?page%5Bnumber%5D=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "active": false,
        "label": "&laquo; Previous",
        "url": null
      },
      {
        "active": true,
        "label": "1",
        "url": "https://api.modulards.com/api/public/v1/teams?page%5Bnumber%5D=1"
      },
      {
        "active": false,
        "label": "Next &raquo;",
        "url": null
      }
    ],
    "path": "https://api.modulards.com/api/public/v1/teams",
    "per_page": 15,
    "to": 2,
    "total": 2
  }
}
```

**SDK Code**

```python 200 - Teams
import requests

url = "https://api.modulards.com/api/public/v1/teams"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript 200 - Teams
const url = 'https://api.modulards.com/api/public/v1/teams';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 200 - Teams
package main

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

func main() {

	url := "https://api.modulards.com/api/public/v1/teams"

	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 200 - Teams
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/teams")

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 200 - Teams
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.modulards.com/api/public/v1/teams")
  .header("Authorization", "Bearer <token>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.modulards.com/api/public/v1/teams', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp 200 - Teams
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/teams");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift 200 - Teams
import Foundation

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/teams")! 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()
```