LogoRecal
Rest apiEndpointsV1Users

List Users

Get all users

GET
/v1/users

Authorization

AuthorizationRequiredBearer <token>

The Recal API token

In: header

Response Body

TypeScript Definitions

Use the response body type in TypeScript.

responseRequiredarray<object>
curl -X GET "https://api.recal.dev/v1/users" \
  -H "Authorization: Bearer <token>"
fetch("https://api.recal.dev/v1/users", {
  headers: {
    "Authorization": "Bearer <token>"
  }
})
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  url := "https://api.recal.dev/v1/users"

  req, _ := http.NewRequest("GET", url, nil)
  req.Header.Add("Authorization", "Bearer <token>")
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://api.recal.dev/v1/users"

response = requests.request("GET", url, headers = {
  "Authorization": "Bearer <token>"
})

print(response.text)
[
  {
    "id": "user_1234567890",
    "createdAt": "2025-05-03T13:50:25.000Z",
    "organizations": [
      {
        "name": "Recal",
        "slug": "recal",
        "createdAt": "2025-04-24T00:00:00.000Z",
        "members": []
      }
    ],
    "oauthConnections": [
      {
        "provider": "google",
        "accessToken": null,
        "refreshToken": {},
        "email": "user@example.com",
        "expiresAt": {},
        "scope": [
          "string"
        ],
        "alive": true
      }
    ]
  }
]