Skip to main content
GET
/
users
/
{user_id}
Get a User
curl --request GET \
  --url https://api.emulator.farm/v1/users/{user_id} \
  --header 'X-EMULATOR-FARM-API-KEY: <api-key>'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "email": "john.doe@example.com",
  "name": "John Doe",
  "created_at": "2025-12-10T12:00:00Z",
  "updated_at": "2025-12-10T12:00:00Z",
  "metadata": {
    "department": "Engineering",
    "team": "Android"
  }
}

Authorizations

X-EMULATOR-FARM-API-KEY
string
header
required

Path Parameters

user_id
string<uuid>
required

The unique identifier of the User

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

User retrieved successfully

id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

email
string<email>
required
Example:

"john.doe@example.com"

name
string
required
Example:

"John Doe"

created_at
string<date-time>
required
Example:

"2025-12-10T12:00:00Z"

updated_at
string<date-time>
required
Example:

"2025-12-10T12:00:00Z"

metadata
object
Example:
{
"department": "Engineering",
"team": "Android"
}