ReqRes App Users API

The App Users API from ReqRes — 13 operation(s) for app users.

Operations 19

POST /api/app-users/login ReqRes App User Login #
POST /api/app-users/verify ReqRes Verify App User Token #
GET /api/app-users/me ReqRes Current App User #
GET /api/app-users ReqRes List App Users #
POST /api/app-users ReqRes Create App User #
GET /api/app-users/{id} ReqRes Get App User #
PUT /api/app-users/{id} ReqRes Update App User #
DELETE /api/app-users/{id} ReqRes Delete App User #
POST /api/app-users/{id}/sessions/simulate ReqRes Simulate App User Session #
GET /api/projects/{projectId}/app-users ReqRes List Project App Users #
GET /api/projects/{projectId}/app-users/total ReqRes App Users Total #
GET /app/me ReqRes App User Profile #
GET /app/collections ReqRes List Collections (app User) #
GET /app/collections/{slug} ReqRes Get Collection (app User) #
GET /app/collections/{slug}/records ReqRes List Records (app User) #
POST /app/collections/{slug}/records ReqRes Create Record (app User) #
GET /app/collections/{slug}/records/{recordId} ReqRes Get Record (app User) #
PUT /app/collections/{slug}/records/{recordId} ReqRes Update Record (app User) #
DELETE /app/collections/{slug}/records/{recordId} ReqRes Delete Record (app User) #

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-legacy-user-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-legacy-unknown-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-auth-request-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-register-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-login-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-collection-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-collection-record-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-app-user-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-app-user-login-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-agent-user-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-agent-pagination-meta-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-legacy-user-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-collection-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-collection-record-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-app-user-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-agent-user-structure.json

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/reqres-app-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

reqres-app-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ReqRes Agent Sandbox App Users API
  description: 'OpenAPI specification for the ReqRes API. Covers legacy demo endpoints, collections, app-user auth flows, custom endpoints, and the Agent Sandbox (/agent/v1/*) for AI coding agents. All /api/* endpoints require x-api-key. All /app/* endpoints require Authorization: Bearer <session_token>. /agent/v1/* endpoints are open in v1 (IP-based rate limiting).'
  version: 2.1.0
  contact:
    name: ReqRes Support
    url: https://reqres.in
    email: hello@reqres.in
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  x-generated-from: documentation
  x-last-validated: '2026-05-29'
  x-source-url: https://reqres.in/openapi.json
servers:
- url: https://reqres.in
  description: Production server
- url: http://localhost:8000
  description: Development server
tags:
- name: App Users
paths:
  /api/app-users/login:
    post:
      summary: ReqRes App User Login
      description: Create or log in an app user and send a magic link token.
      operationId: appUserLogin
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppUserLoginRequest'
      responses:
        '200':
          description: Login initiated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserLoginResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/app-users/verify:
    post:
      summary: ReqRes Verify App User Token
      description: Verify a magic link token and return an app-session token.
      operationId: verifyAppUserToken
      tags:
      - App Users
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppUserVerifyRequest'
      responses:
        '200':
          description: Token verified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserVerifyResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - ApiKeyAuth: []
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/app-users/me:
    get:
      summary: ReqRes Current App User
      description: Return the current app user based on session token.
      operationId: getAppUserMe
      tags:
      - App Users
      security:
      - BearerAuth: []
      responses:
        '200':
          description: App user session
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserSessionResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/app-users:
    get:
      summary: ReqRes List App Users
      description: List app users for the current project.
      operationId: listAppUsers
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: X-Reqres-Env
        in: header
        description: 'Environment key (for example: prod or dev).'
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Max results (default 50).
        required: false
        schema:
          type: integer
          minimum: 1
          maximum: 200
      responses:
        '200':
          description: App users list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserListResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      summary: ReqRes Create App User
      description: Create an app user in the project.
      operationId: createAppUser
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppUserCreateRequest'
      responses:
        '200':
          description: App user created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/app-users/{id}:
    get:
      summary: ReqRes Get App User
      description: Fetch an app user by id.
      operationId: getAppUser
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: id
        in: path
        description: App user id.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: App user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserResponse'
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      summary: ReqRes Update App User
      description: Update an app user by id.
      operationId: updateAppUser
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: id
        in: path
        description: App user id.
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppUserUpdateRequest'
      responses:
        '200':
          description: App user updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      summary: ReqRes Delete App User
      description: Delete an app user by id.
      operationId: deleteAppUser
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: id
        in: path
        description: App user id.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: App user deleted
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/app-users/{id}/sessions/simulate:
    post:
      summary: ReqRes Simulate App User Session
      description: Owner-only helper to mint an app-user session token.
      operationId: simulateAppUserSession
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: id
        in: path
        description: App user id.
        required: true
        schema:
          type: string
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Session simulated
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/projects/{projectId}/app-users:
    get:
      summary: ReqRes List Project App Users
      description: List app users for a project using API key auth.
      operationId: listProjectAppUsers
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: X-Reqres-Env
        in: header
        description: 'Environment key (for example: prod or dev).'
        required: false
        schema:
          type: string
      - name: projectId
        in: path
        description: Project id.
        required: true
        schema:
          type: string
      - name: statuses
        in: query
        description: Filter by status (active, pending) or use "all".
        required: false
        schema:
          type: string
      responses:
        '200':
          description: App users list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserListResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /api/projects/{projectId}/app-users/total:
    get:
      summary: ReqRes App Users Total
      description: Return total app user count for a project.
      operationId: getProjectAppUserTotal
      tags:
      - App Users
      security:
      - ApiKeyAuth: []
      parameters:
      - name: X-Reqres-Env
        in: header
        description: 'Environment key (for example: prod or dev).'
        required: false
        schema:
          type: string
      - name: projectId
        in: path
        description: Project id.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Total count
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserTotalResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /app/me:
    get:
      summary: ReqRes App User Profile
      description: Return app-user profile from a session token.
      operationId: getAppSessionProfile
      tags:
      - App Users
      security:
      - BearerAuth: []
      responses:
        '200':
          description: App user profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppUserSessionResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /app/collections:
    get:
      summary: ReqRes List Collections (app User)
      description: List collections with an app-user session token.
      operationId: listCollectionsAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      responses:
        '200':
          description: Collections list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionListResponse'
        '401':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /app/collections/{slug}:
    get:
      summary: ReqRes Get Collection (app User)
      description: Fetch collection by slug with an app-user token.
      operationId: getCollectionAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Collection
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionResponse'
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /app/collections/{slug}/records:
    get:
      summary: ReqRes List Records (app User)
      description: List records with an app-user token.
      operationId: listRecordsAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Records
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionRecordListResponse'
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      summary: ReqRes Create Record (app User)
      description: Create a record with an app-user token.
      operationId: createRecordAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CollectionRecordCreateRequest'
      responses:
        '201':
          description: Record created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionRecordResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /app/collections/{slug}/records/{recordId}:
    get:
      summary: ReqRes Get Record (app User)
      description: Fetch a record by id with an app-user token.
      operationId: getRecordAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      - name: recordId
        in: path
        description: Record id.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionRecordResponse'
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      summary: ReqRes Update Record (app User)
      description: Update a record with an app-user token.
      operationId: updateRecordAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      - name: recordId
        in: path
        description: Record id.
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CollectionRecordUpdateRequest'
      responses:
        '200':
          description: Record updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionRecordResponse'
        '400':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      summary: ReqRes Delete Record (app User)
      description: Delete a record with an app-user token.
      operationId: deleteRecordAppUser
      tags:
      - App Users
      security:
      - BearerAuth: []
      parameters:
      - name: slug
        in: path
        description: Collection slug.
        required: true
        schema:
          type: string
      - name: recordId
        in: path
        description: Record id.
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No content
        '404':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    AppUserLoginResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
      required:
      - data
    Collection:
      type: object
      properties:
        id:
          type: string
        project_id:
          type: string
        user_id:
          type: string
        name:
          type: string
        slug:
          type: string
        schema:
          type: object
          additionalProperties: true
        visibility:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
      - id
      - name
      - slug
      additionalProperties: true
    AppUserListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AppUser'
      required:
      - data
    CollectionRecordUpdateRequest:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
      required:
      - data
      additionalProperties: true
    AppUserResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AppUser'
      required:
      - data
    AppUserCreateRequest:
      type: object
      properties:
        email:
          type: string
          format: email
        metadata:
          type: object
          additionalProperties: true
      required:
      - email
      additionalProperties: true
    AppUserVerifyRequest:
      type: object
      properties:
        token:
          type: string
      required:
      - token
    CollectionRecord:
      type: object
      properties:
        id:
          type: string
        collection_id:
          type: string
        project_id:
          type: string
        app_user_id:
          type: string
        created_by:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type:
          - string
          - 'null'
          format: date-time
        data:
          type: object
          additionalProperties: true
      required:
      - id
      - data
      additionalProperties: true
    AppUserSessionResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
      required:
      - data
    AppUser:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
          format: email
        status:
          type: string
        last_login_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
        metadata:
          type: object
          additionalProperties: true
      required:
      - id
      - email
      additionalProperties: true
    CollectionRecordCreateRequest:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
      required:
      - data
      additionalProperties: true
    CollectionResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Collection'
      required:
      - data
    CollectionRecordResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CollectionRecord'
      required:
      - data
    AppUserTotalResponse:
      type: object
      properties:
        total:
          type: integer
      required:
      - total
    AppUserLoginRequest:
      type: object
      properties:
        email:
          type: string
          format: email
        project_id:
          oneOf:
          - type: string
          - type: integer
        metadata:
          type: object
          additionalProperties: true
      required:
      - email
      additionalProperties: true
    CollectionRecordListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CollectionRecord'
        meta:
          type: object
          properties:
            page:
              type: integer
            limit:
              type: integer
            total:
              type: integer
            pages:
              type: integer
          additionalProperties: true
      required:
      - data
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
      additionalProperties: true
      required:
      - error
    CollectionListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Collection'
      required:
      - data
    AppUserUpdateRequest:
      type: object
      properties:
        email:
          type: string
          format: email
        status:
          type: string
        metadata:
          type: object
          additionalProperties: true
      additionalProperties: true
    AppUserVerifyResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties: true
      required:
      - data
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: session_token