> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-3eecfb7c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Mutes endpoints migration overview

> Migrate mutes lookup and manage mutes integrations from Standard v1.1 to X API v2 with mapped endpoints, parameters, and rate limits.

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

## Comparing X API’s mutes endpoints

#### Mutes lookup

The v2 mutes lookup endpoint will replace the standard [v1.1 GET mutes/users/ids](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids) and [GET mutes/users/list](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-list) endpoints.

The following tables compare the standard v1.1 and X API v2 mute endpoints:
 

| Description                                                                                                                                                            | Standard v1.1                                                       | X API v2                                                                                                                                                                                                                                                                                                                                              |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| HTTP methods supported                                                                                                                                                 | **GET**                                                             | **GET**                                                                                                                                                                                                                                                                                                                                               |
| Host domain                                                                                                                                                            | **[https://api.x.com](https://api.x.com)**                          | **[https://api.x.com](https://api.x.com)**                                                                                                                                                                                                                                                                                                            |
| Endpoint path                                                                                                                                                          | **/1.1/mutes/users/ids.json**<br /><br />/1.1/mutes/users/list.json | **/2/users/:id/muting**                                                                                                                                                                                                                                                                                                                               |
| [Authentication](/resources/fundamentals/authentication)                                                                                                               | OAuth 1.0a User Context                                             | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE                                                                                                                                                                                                                                                                             |
| Default request [rate limits](/resources/fundamentals/rate-limits)                                                                                                     | 15 requests per 15 min (per user)                                   | 15 requests per 15 min (per user)                                                                                                                                                                                                                                                                                                                     |
| Data formats                                                                                                                                                           | Standard v1.1 format                                                | [X API v2 format](/x-api/fundamentals/data-dictionary) (determined by fields and expansions request parameters, not backward-compatible with v1.1 formats)<br /><br />To learn more about how to migrate from the Standard v1.1 format to the X API v2 format, please visit our [data formats migration guide](/x-api/migrate/data-format-migration). |
| Requires use of credentials from a [developer App](/resources/fundamentals/developer-apps) that is associated with a [Project](/resources/fundamentals/developer-apps) |                                                                     | ✔️                                                                                                                                                                                                                                                                                                                                                    |

#### Manage mutes

The v2 manage mutes endpoints will replace the standard v1.1 [POST mutes/users/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/post-mutes-users-create) and [POST mutes/users/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/post-mutes-users-destroy) endpoints.

The following tables compare the standard v1.1 and X API v2 mute endpoints:

**Mute a user**

| Description                                                                                                                                                            | Standard v1.1                          | X API v2                                                                  |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| HTTP methods supported                                                                                                                                                 | POST                                   | POST                                                                      |
| Host domain                                                                                                                                                            | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| Endpoint path                                                                                                                                                          | /1.1/mutes/users/create.json           | /2/users/:id/muting                                                       |
| [Authentication](/resources/fundamentals/authentication)                                                                                                               | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| Default request [rate limits](/resources/fundamentals/rate-limits)                                                                                                     | 50 requests per 15 min                 | 50 requests per 15 min                                                    |
| Requires use of credentials from a [developer App](/resources/fundamentals/developer-apps) that is associated with a [Project](/resources/fundamentals/developer-apps) |                                        | ✔️                                                                        |

**Unmute a user**

The following tables compare the standard v1.1 and X API v2 unmute endpoints:

| Description                                                                                                                                                            | Standard v1.1                          | X API v2                                                                  |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| HTTP methods supported                                                                                                                                                 | POST                                   | DELETE                                                                    |
| Host domain                                                                                                                                                            | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| Endpoint path                                                                                                                                                          | /1.1/mutes/users/destroy.json          | /2/users/:source\_user\_id/muting/:target\_user\_id                       |
| [Authentication](/resources/fundamentals/authentication)                                                                                                               | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| Default request [rate limits](/resources/fundamentals/rate-limits)                                                                                                     | 50 requests per 15 min                 | 50 requests per 15 min                                                    |
| Requires use of credentials from a [developer App](/resources/fundamentals/developer-apps) that is associated with a [Project](/resources/fundamentals/developer-apps) |                                        | ✔️                                                                        |

**Other migration resources**

[Manage mutes: Standard v1.1 to X API v2](/x-api/users/mutes#manage-mutes-standard-v1-1-compared-to-x-api-v2)

[X API migration hub](/x-api/migrate/overview)
