Platzi users API

The users API from Platzi — 3 operation(s) for users.

Operations 6

GET /api/v1/users #
POST /api/v1/users #
GET /api/v1/users/{id} #
PUT /api/v1/users/{id} #
DELETE /api/v1/users/{id} #
POST /api/v1/users/is-available #

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/platzi-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

platzi-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Platzi Fake Store auth Users API
  description: ''
  version: '1.0'
  contact: {}
servers: []
tags:
- name: users
paths:
  /api/v1/users:
    get:
      operationId: UsersController_getAll
      parameters:
      - name: limit
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
      tags:
      - users
    post:
      operationId: UsersController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUserDto'
      responses:
        '201':
          description: ''
      tags:
      - users
  /api/v1/users/{id}:
    get:
      operationId: UsersController_get
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: ''
      tags:
      - users
    put:
      operationId: UsersController_update
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateUserDto'
      responses:
        '200':
          description: ''
      tags:
      - users
    delete:
      operationId: UsersController_delete
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: ''
      tags:
      - users
  /api/v1/users/is-available:
    post:
      operationId: UsersController_isAvailable
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ValidateUserDto'
      responses:
        '201':
          description: ''
      tags:
      - users
components:
  schemas:
    ValidateUserDto:
      type: object
      properties:
        email:
          type: string
      required:
      - email
    UpdateUserDto:
      type: object
      properties:
        email:
          type: string
        name:
          type: string
        password:
          type: string
        role:
          type: string
        avatar:
          type: string
      required:
      - email
      - name
      - password
      - role
      - avatar
    CreateUserDto:
      type: object
      properties:
        email:
          type: string
        name:
          type: string
        password:
          type: string
        role:
          type: string
        avatar:
          type: string
      required:
      - email
      - name
      - password
      - role
      - avatar