2ndKitchen Users API

The Users API from 2ndKitchen — 4 operation(s) for users.

Operations 4

GET /user/me
POST /users/{user_id}/verify/v2
POST /users/{user_id}/verify_verification_code
POST /users/{user_id}/activate

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/2ndkitchen-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

2ndkitchen-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 2ndKitchen - User Service Users API
  version: '1.0'
servers:
- url: https://user-staging.2ndkitchen.com
  description: staging
tags:
- name: Users
paths:
  /user/me:
    get:
      security:
      - bearerAuth: []
      description: Get User object
      tags:
      - Users
      responses:
        '200':
          description: Returns the user object
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: ok
                  data:
                    type: object
                    properties:
                      user:
                        $ref: '#/components/schemas/User'
        '400':
          description: User Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    description: User does not exist error
                    type: string
                    example: User does not exist
  /users/{user_id}/verify/v2:
    parameters:
    - in: path
      required: true
      name: user_id
      description: The id for the user
      example: 2
      schema:
        type: integer
    post:
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - user_id
              - phone_number
              type: object
              properties:
                user_id:
                  description: Id for user
                  type: integer
                phone_number:
                  description: User phone number
                  type: string
      description: Verify a newly created user
      tags:
      - Users
      responses:
        '200':
          description: Returns success if the user was verified
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: ok
        '400':
          description: User not found Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    description: User not found error
                    type: string
                    example: User not found
  /users/{user_id}/verify_verification_code:
    parameters:
    - in: path
      required: true
      name: user_id
      description: The id for the user
      example: 2
      schema:
        type: integer
    post:
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - user_id
              - code
              type: object
              properties:
                user_id:
                  description: Id for user
                  type: integer
                phone_number:
                  description: Verification code
                  type: string
      description: Verify user verification code
      tags:
      - Users
      responses:
        '200':
          description: Returns the user object
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: ok
                  data:
                    type: object
                    properties:
                      user:
                        $ref: '#/components/schemas/User'
        '400':
          description: Verification error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    description: User already verified error
                    type: string
                    example: User already verified
  /users/{user_id}/activate:
    parameters:
    - in: path
      required: true
      name: user_id
      description: The id for the user
      example: 2
      schema:
        type: integer
    post:
      security:
      - bearerAuth: []
      description: Activate the user
      tags:
      - Users
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - user_id
              - email
              - first_name
              type: object
              properties:
                user_id:
                  description: User id
                  type: integer
                email:
                  description: User email
                  type: string
                  example: jsmith@gmail.com
                first_name:
                  description: User first name
                  type: string
                  example: John
                last_name:
                  description: User last name
                  type: string
                  example: Smith
                apartment_number:
                  description: User apartment number
                  type: integer
                business_location_id:
                  description: User business location id
                  type: integer
      responses:
        '200':
          description: Returns the user object
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: ok
                  data:
                    type: object
                    properties:
                      user:
                        $ref: '#/components/schemas/User'
        '400':
          description: User Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    description: User alright active error
                    type: string
                    example: User is already active!
components:
  schemas:
    User:
      type: object
      properties:
        id:
          description: User id
          type: integer
        phone_number:
          description: User phone number
          type: string
        phone_number_e164:
          description: User phone number in e164 format
          type: string
        first_name:
          description: User first name
          type: integer
        last_name:
          description: User last name
          type: integer
        email:
          description: User email
          type: string
        apartment_number:
          description: User apartment number
          type: integer
        picture:
          description: User picture url
          type: string
        is_verified:
          description: Whether user is verified (phone number verified)
          type: integer
          enum:
          - 0
          - 1
        is_active:
          description: Whether the user is activated (completed profile)
          type: integer
          enum:
          - 0
          - 1
        is_deleted:
          description: Whether the user is delted or not
          type: integer
          enum:
          - 0
          - 1
        is_blacklisted:
          description: Whether the user is delted or not
          type: integer
          enum:
          - 0
          - 1
        last_verification_sent_date:
          description: Last date user was sent a verifcation reminder
          type: string
        sms_opt_in:
          description: Whether the user opts in to getting sms
          type: integer
          enum:
          - 0
          - 1
        business_id:
          description: Id for user if they belong to a user
          type: integer
        business_location_id:
          description: User business location
          type: integer
        created_date:
          description: Date the user was created
          type: integer
        verified_at:
          description: Time the user was verified at
          type: string
        activated_at:
          description: Time the user was activated at
          type: string
        notifications:
          type: array
          items:
            $ref: '#/components/schemas/UserNotification'
    UserNotification:
      type: object
      properties:
        id:
          description: Notification id
          type: integer
        user_id:
          description: User id
          type: integer
        type:
          type: integer
          enum:
          - 1
          - 2
          description: "Notification type:\n  * `0` - DAILY_MENU_SMS\n    * `1` - UPCOMING_EVENT_SMS\n"
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT