# Get user notes
You can return a list of all your notes connected to a specific user.
GET /users/:user_id/notes/
| Attributes | Type | Required | Description | 
|---|---|---|---|
| user_id | integer | yes | A unique identifier for the user which is given by User.com automatically. | 
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/users/:user_id/notes/"
# Response
{
  "next": null,
  "results": [
    {
      "author": 382,
      "note": "my note",
      "id": 27785
    },
    {
      "author": 382,
      "note": "very useful note",
      "id": 27787
    },
    {
      "author": 382,
      "note": "another awesome note",
      "id": 27788
    }
  ],
  "count": 3,
  "previous": null
}