Notion API - Public Beta (English)
  1. Users
Notion API - Public Beta (English)
  • Introduction
  • Integration capabilities
  • Request limits
  • Status codes
  • ENDPOINTS
    • Authentication
      • Authentication
      • Token
    • Blocks
      • Delete a block
      • Append block children
      • Retrieve a block
      • Update a block
      • Retrieve block children
    • Databases
      • Filter database entries
      • Sort database entries
      • Update database properties
      • Retrieve a database
      • Update a database
      • Query a database
    • Pages
      • Archive a page
      • Retrieve a page property item
      • Create a page
      • Retrieve a Page
      • Update Page properties
    • Users
      • List all users
      • Retrieve your token's bot user
      • Retrieve a user
    • Comments
      • Create comment
      • Retrieve comments
    • Search
      • Search optimizations and limitations
      • Search by title
  • OBJECTS
    • Block
    • Comment
    • Unfurl attribute object for Link Previews
    • Page
      • Page
      • Page properties
    • Database
      • Database
      • Database properties
    • User
      • User
      • Comment
    • Other
      • Emoji object
      • File object
      • Parent object
      • Rich text object
  • Versioning
    • Versioning
    • Changes by version
  • ENDPOINTS Copy
    • Authentication
      • Authentication
      • Token
    • Blocks
      • Retrieve a block
      • Update a block
      • Retrieve block children
      • Delete a block
      • Append block children
    • Databases
      • Filter database entries
      • Sort database entries
      • Update database properties
      • Retrieve a database
      • Update a database
      • Query a database
      • Create a database
    • Pages
      • Archive a page
      • Retrieve a Page
      • Update Page properties
      • Retrieve a page property item
      • Create a page
    • Users
      • Retrieve a user
        GET
      • List all users
        GET
      • Retrieve your token's bot user
        GET
    • Comments
      • Create comment
      • Retrieve comments
  1. Users

List all users

GET
https://api.notion.com/v1/users
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.notion.com/v1/users?start_cursor=' \
--header 'Notion-Version;'
Response Response Example
200 - Success-List all users
{
  "results": [
    {
      "object": "user",
      "id": "d40e767c-d7af-4b18-a86d-55c61f1e39a4",
      "type": "person",
      "person": {
        "email": "avo@example.org",
      },
      "name": "Avocado Lovelace",
      "avatar_url": "https://secure.notion-static.com/e6a352a8-8381-44d0-a1dc-9ed80e62b53d.jpg",
    },
    {
      "object": "user",
      "id": "9a3b5ae0-c6e6-482d-b0e1-ed315ee6dc57",
      "type": "bot",
      "bot": {},
      "name": "Doug Engelbot",
      "avatar_url": "https://secure.notion-static.com/6720d746-3402-4171-8ebb-28d15144923c.jpg",
    }
  ],
  "next_cursor": "fe2cc560-036c-44cd-90e8-294d5a74cebc",
  "has_more": true
}

Request

Query Params
start_cursor
string 
optional
Header Params
Notion-Version
string 
required

Responses

🟢200OK-List all users
application/json
Body
object {0}
🟠400Bad Request-List all users
Modified at 2023-04-28 08:49:29
Previous
Retrieve a user
Next
Retrieve your token's bot user
Built with