GET /sites/$site/users

List the users of a site.

Resource Information

   
Method GET
URL https://public-api.wordpress.com/rest/v1.1/sites/$site/users
Requires authentication? Yes

Method Parameters

Parameter Type Description
$site (int|string) Site ID or domain

Query Parameters

Parameter Type Description
context (string)
display:
(default) Formats the output as HTML for display. Shortcodes are parsed, paragraph tags are added, etc..
edit:
Formats the output for editing. Shortcodes are left unparsed, significant whitespace is kept, etc..
http_envelope (bool)
false:
(default)
true:
Some environments (like in-browser JavaScript or Flash) block or divert responses with a non-200 HTTP status code. Setting this parameter will force the HTTP status code to always be 200. The JSON response is wrapped in an "envelope" containing the "real" HTTP status code and headers.
pretty (bool)
false:
(default)
true:
Output pretty JSON
meta (string) Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes
fields (string) Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title
callback (string) An optional JSONP callback function.
number (int) Limit the total number of authors returned. Default: 20.
offset (int) The first n authors to be skipped in the returned array.
order (string)
DESC:
(default) Return authors in descending order.
ASC:
Return authors in ascending order.
order_by (string)
ID:
(default) Order by ID (default).
login:
Order by username.
nicename:
Order by nicename.
email:
Order by author email address.
url:
Order by author URL.
registered:
Order by registered date.
display_name:
Order by display name.
post_count:
Order by number of posts published.
authors_only (bool) Set to true to fetch authors only
type (string) Specify the post type to query authors for. Only works when combined with the `authors_only` flag. Defaults to 'post'. Post types besides post and page need to be whitelisted using the rest_api_allowed_post_types filter.
search (string) Find matching users.
search_columns (array) Specify which columns to check for matching users. Can be any of 'ID', 'user_login', 'user_email', 'user_url', 'user_nicename', and 'display_name'. Only works when combined with `search` parameter.
role (string) Specify a specific user role to fetch.

Response Parameters

Parameter Type Description
found (int) The total number of authors found that match the request (ignoring limits and offsets).
users (array) Array of user objects
authors (array) Array of author objects.

Resource Errors

These are the possible errors returned by this endpoint.

HTTP Code Error Identifier Error Message
403 unauthorized User cannot access this private blog.
403 unauthorized User cannot access this restricted blog
403 unauthorized User cannot view authors for specified post type
403 unauthorized User cannot view users for specified site
400 invalid_number The NUMBER parameter must be less than or equal to 1000.
404 unknown_post_type Unknown post type

Example

curl \
 -H 'authorization: Bearer YOUR_API_TOKEN' \
 'https://public-api.wordpress.com/rest/v1/sites/82974409/users'
<?php
$options  = array (
  'http' => 
  array (
    'ignore_errors' => true,
    'header' => 
    array (
      0 => 'authorization: Bearer YOUR_API_TOKEN',
    ),
  ),
);

$context  = stream_context_create( $options );
$response = file_get_contents(
	'https://public-api.wordpress.com/rest/v1/sites/82974409/users',
	false,
	$context
);
$response = json_decode( $response );
?>

Response

{
    "found": 1,
    "users": [
        {
            "ID": 78972699,
            "login": "apiexamples",
            "email": "[email protected]",
            "name": "apiexamples",
            "first_name": "",
            "last_name": "",
            "nice_name": "apiexamples",
            "URL": "http:\/\/apiexamples.wordpress.com",
            "avatar_URL": "https:\/\/1.gravatar.com\/avatar\/a2afb7b6c0e23e5d363d8612fb1bd5ad?s=96&d=identicon&r=G",
            "profile_URL": "https:\/\/en.gravatar.com\/apiexamples",
            "site_ID": 82974409,
            "roles": [
                "administrator"
            ],
            "is_super_admin": false
        }
    ]
}