Postiz Auth API

The Auth API from Postiz — 10 operation(s) for auth.

Operations 10

GET /auth/can-register #
POST /auth/register #
POST /auth/login #
POST /auth/forgot #
POST /auth/forgot-return #
GET /auth/oauth-mobile-callback #
POST /auth/activate #
POST /auth/resend-activation #
POST /auth/oauth/{provider}/exists #

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/postiz-auth-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

postiz-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Postiz Swagger file Auth API
  description: API description
  version: '1.0'
  contact: {}
servers: []
tags:
- name: Auth
paths:
  /auth/can-register:
    get:
      operationId: AuthController_canRegister
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Auth
  /auth/register:
    post:
      operationId: AuthController_register
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOrgUserDto'
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/login:
    post:
      operationId: AuthController_login
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LoginUserDto'
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/forgot:
    post:
      operationId: AuthController_forgot
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ForgotPasswordDto'
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/forgot-return:
    post:
      operationId: AuthController_forgotReturn
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ForgotReturnPasswordDto'
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/oauth-mobile-callback:
    get:
      operationId: AuthController_mobileCallback
      parameters:
      - name: code
        required: true
        in: query
        schema:
          type: string
      - name: state
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Auth
  /auth/oauth/{provider}:
    get:
      operationId: AuthController_oauthLink
      parameters:
      - name: provider
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Auth
  /auth/activate:
    post:
      operationId: AuthController_activate
      parameters: []
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/resend-activation:
    post:
      operationId: AuthController_resendActivation
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResendActivationDto'
      responses:
        '201':
          description: ''
      tags:
      - Auth
  /auth/oauth/{provider}/exists:
    post:
      operationId: AuthController_oauthExists
      parameters:
      - name: provider
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ''
      tags:
      - Auth
components:
  schemas:
    LoginUserDto:
      type: object
      properties: {}
    ResendActivationDto:
      type: object
      properties: {}
    CreateOrgUserDto:
      type: object
      properties: {}
    ForgotPasswordDto:
      type: object
      properties: {}
    ForgotReturnPasswordDto:
      type: object
      properties: {}