Kitchen Stories Authentication API

The Authentication API from Kitchen Stories — 10 operation(s) for authentication.

Operations 10

POST /authenticate/ Authenticate and get a bearer token for the subsequent calls to the api #
POST /authenticate/appleid/ Authenticate using Apple ID, get a bearer token for subsequent calls #
POST /authenticate/google/ Authenticate using Google Account, get a bearer token for subsequent calls #
POST /authenticate/facebook/ Authenticate using Facebook Account, get a bearer token for the subsequent calls #
POST /authenticate/credentials/ authenticate and get a bearer token for the subsequent calls to the api #
POST /register/ Create a new user with email and password #
GET /users/validate/email validate email link - generated by ultron on account creation (note no trailing slash on this endpoint) #
POST /password/forgot/ Send out a password forgot e-mail if the account exists #
GET /password/reset/ Reset the user password (needs password forgot payload token) #
POST /installations/ Create a new installation in the database #

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/kitchenstories-authentication-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

kitchenstories-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '3'
  title: Kitchen Stories Internal Articles Admin Authentication API
  description: ''
  contact:
    email: hello@kitchenstories.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://api.kitchenstories.io/api
  description: LIVE Environment
- url: https://api.dev.kitchenstories.io/api
  description: Development Environment
- url: http://localhost:8000/api
  description: Local Environment
security:
- bearerAuth: []
- ApiKeyAuth: []
tags:
- name: Authentication
paths:
  /authenticate/:
    post:
      deprecated: true
      summary: Authenticate and get a bearer token for the subsequent calls to the api
      operationId: autenticate
      tags:
      - Authentication
      requestBody:
        description: This endpoint can be called also without a requestBody. Then an access Token will be returned.
        required: false
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/apple_auth'
              - $ref: '#/components/schemas/google_auth'
              - $ref: '#/components/schemas/facebook_auth'
              - $ref: '#/components/schemas/email_auth'
      responses:
        '200':
          description: 'On success for `apple_auth`, `google_auth`, `facebook_auth` and `email_auth` an `user_token` schema will be returned. On empty body an `access_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/access_token'
                - $ref: '#/components/schemas/errors'
  /authenticate/appleid/:
    post:
      summary: Authenticate using Apple ID, get a bearer token for subsequent calls
      operationId: autenticate-appleid
      tags:
      - Authentication
      requestBody:
        description: This endpoint can be called also without a requestBody. Then an access Token will be returned.
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/apple_auth'
      responses:
        '200':
          description: 'On success an `user_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/errors'
  /authenticate/google/:
    post:
      summary: Authenticate using Google Account, get a bearer token for subsequent calls
      operationId: autenticate-google
      tags:
      - Authentication
      requestBody:
        description: This endpoint can be called also without a requestBody. Then an access Token will be returned.
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/google_auth'
      responses:
        '200':
          description: 'On success an `user_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/errors'
  /authenticate/facebook/:
    post:
      summary: Authenticate using Facebook Account, get a bearer token for the subsequent calls
      operationId: autenticate-facebook
      tags:
      - Authentication
      requestBody:
        description: This endpoint can be called also without a requestBody. Then an access Token will be returned.
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/facebook_auth'
      responses:
        '200':
          description: 'On success an `user_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/errors'
  /authenticate/credentials/:
    post:
      summary: authenticate and get a bearer token for the subsequent calls to the api
      operationId: autenticate-credentials
      tags:
      - Authentication
      requestBody:
        description: This endpoint can be called also without a requestBody. Then an access Token will be returned.
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/email_auth'
      responses:
        '200':
          description: 'On success an `user_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/errors'
  /register/:
    post:
      summary: Create a new user with email and password
      operationId: register-credentials
      tags:
      - Authentication
      requestBody:
        description: 'although `installation_id` is a required field, this can be set to a dummy value if not used (ie for web registration)

          '
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/email_registration'
      responses:
        '200':
          description: 'On success an `user_token` schema will be returned. If where is an error `errors` schema will be returned.

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/user_token'
                - $ref: '#/components/schemas/errors'
  /users/validate/email:
    get:
      summary: validate email link - generated by ultron on account creation (note no trailing slash on this endpoint)
      operationId: validate-email
      tags:
      - Authentication
      parameters:
      - name: email
        in: query
        description: email of the user
        required: true
        schema:
          type: string
      - name: hash
        in: query
        description: hash created by ultron with email and secret key to compare
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 'On success empty error schema is returned, otherwise error is given

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                $ref: '#/components/schemas/errors'
  /password/forgot/:
    post:
      summary: Send out a password forgot e-mail if the account exists
      operationId: password-forgot
      tags:
      - Authentication
      requestBody:
        description: email
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/forgot_password'
      responses:
        '200':
          description: 'On success empty error schema is returned, otherwise error is given

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                $ref: '#/components/schemas/errors'
  /password/reset/:
    get:
      summary: Reset the user password (needs password forgot payload token)
      operationId: password-reset
      tags:
      - Authentication
      parameters:
      - name: new_password
        in: query
        description: new password
        required: true
        schema:
          type: string
      - name: password_token
        in: query
        description: password token generated by ultron when sending reset link
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 'On success empty error schema is returned, otherwise error is given

            '
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                $ref: '#/components/schemas/errors'
  /installations/:
    post:
      summary: Create a new installation in the database
      operationId: create-installation
      tags:
      - Authentication
      requestBody:
        description: Only id is required
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/create_installation'
      responses:
        '200':
          description: On success Installation schema is returned, otherwise error is given. For compatibility reasons, errors key is always present in the response, and might be "Null" when there are no errors.
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                oneOf:
                - $ref: '#/components/schemas/errors'
                - $ref: '#/components/schemas/installation'
components:
  schemas:
    email_auth:
      type: object
      properties:
        email:
          type: string
        password:
          type: string
        installation_id:
          type: string
        token_type:
          type: string
      required:
      - email
      - password
    access_token:
      type: object
      properties:
        access_token:
          type: string
      required:
      - access_token
    user_token:
      type: object
      properties:
        user_token:
          type: string
        is_new:
          type: boolean
      required:
      - is_new
      - user_token
    email_registration:
      type: object
      properties:
        email:
          type: string
        username:
          type: string
        password:
          type: string
        installation_id:
          type: string
        device:
          type: string
        newsletter:
          type: boolean
      required:
      - email
      - username
      - password
      - installation_id
    apple_auth:
      type: object
      properties:
        name:
          type: string
        apple_token:
          type: string
        installation_id:
          type: string
        is_new:
          type: boolean
      required:
      - name
      - apple_token
      - installation_id
    google_auth:
      type: object
      properties:
        google_token:
          type: string
        installation_id:
          type: string
        is_new:
          type: boolean
      required:
      - google_token
      - installation_id
    errors:
      type: object
      properties:
        errors:
          type: array
          items:
            type: string
      required:
      - errors
    installation:
      type: object
      properties:
        id:
          type: string
          pattern: '[0-9a-f-]{36}'
        advertising_id:
          type: string
          pattern: '[0-9a-f-]{36}'
        amplitude_id:
          type: string
          pattern: '[0-9a-f-]{36}'
        app_version:
          type: string
        app_build:
          type: number
        device_type:
          type: string
        software_version:
          type: string
        hardware_version:
          type: string
        push_type:
          type: string
        push_token:
          type: string
        push_settings:
          type: string
        app_language:
          type: string
        device_language:
          type: string
        timezone:
          type: string
        push_settings_weekly_updates:
          type: boolean
        push_settings_replies_to_comments:
          type: boolean
        push_settings_replies_to_replies:
          type: boolean
      required:
      - id
    facebook_auth:
      type: object
      properties:
        facebook_token:
          type: string
        installation_id:
          type: string
        is_new:
          type: boolean
      required:
      - facebook_token
      - installation_id
    forgot_password:
      type: object
      properties:
        email:
          type: string
      required:
      - email
    create_installation:
      type: object
      properties:
        id:
          type: string
          pattern: '[0-9a-f-]{36}'
        advertising_id:
          type: string
          pattern: '[0-9a-f-]{36}'
        amplitude_id:
          type: string
          pattern: '[0-9a-f-]{36}'
        app_version:
          type: string
        app_build:
          type: number
        device_type:
          type: string
        software_version:
          type: string
        hardware_version:
          type: string
        push_type:
          type: string
        push_token:
          type: string
        push_settings:
          type: string
        app_language:
          type: string
        device_language:
          type: string
        timezone:
          type: string
        push_settings_weekly_updates:
          type: boolean
        push_settings_replies_to_comments:
          type: boolean
        push_settings_replies_to_replies:
          type: boolean
      required:
      - id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Ultron-User