My App
Api reference

REST API

Detailed information about our REST API endpoints.

REST API

Our REST API allows you to interact with our services programmatically. This page provides detailed information about our available endpoints.

Retrieve a list of users

GET /v1/users

Responses

  • 200: An array of user objects.
  • 401: Unauthorized. Your API key is invalid.

Create a new user

POST /v1/users

Responses

  • 201: The newly created user object.
  • 400: Bad Request. The request body is invalid.
  • 401: Unauthorized. Your API key is invalid.

Retrieve a single user

GET /v1/users/{id}

Responses

  • 200: The user object.
  • 401: Unauthorized. Your API key is invalid.
  • 404: Not Found. The user does not exist.