---
title: "Follow a list of users"
method: POST
path: "/me/following"
tags: ["Users\\Followers"]
---

# Follow a list of users

`POST /me/following`

This method causes the authenticated user to become the follower of multiple users. In the body of the request, specify the list of users to follow as
an array of URIs, where `user01_id`, `user02_id`, `user03_id`, and so on, are the user IDs of the users in question:

```
{
 [
     {"uri" : "/users/{user01_id}"},
     {"uri" : "/users/{user02_id}"},
     {"uri" : "/users/{user03_id}"}
 ]
}
```

## Request body

- object
  - `users` string[], required — An array of user IDs for the authenticated user to follow.

## Response `204`

The users were followed.

## Other responses

- `400` — * Error code 2205: The request body is empty, the users array is invalid, or the list of users doesn't contain URIs. * Error code 2900: A user in the list doesn't exist. * Error code 2901: The list contains more than 100 users.
- `401` — Error code 8000: The user access token is invalid.
- `403` — Error code 3417: The authenticated user can't follow other users.
- `429` — Error code 9006: The authenticated user is rate-limited from following other users.
- `500` — Error code 4005: An unexpected error occurred.

---

[API](https://skmtc.net/vimeo/apis/vimeo-api.md) · [All operations](https://skmtc.net/vimeo/apis/vimeo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vimeo/vimeo-api/revisions/ea882e0224a4/schema)
