---
title: "Get user info"
url: "https://docs.signnow.com/docs/user/operations/get-user-info"
type: "endpoint"
section: "user"
slug: "user/operations/get-user-info"
method: "GET"
path: "/user"
operation_id: "get-user-info"
authorization: "bearer"
---

# Get user info

`GET /user`

Returns a user resource

## Authorization

bearer

## Responses

### 200

### 400

Request with Incorrect or missing token

**Example** (`application/json`)

```json
{
  "code": 1537,
  "error": "invalid_token"
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X GET \
  "https://api.signnow.com/user" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/user/operations/get-user-info*
