NoBueno users API

The users API from NoBueno — 13 operation(s) for users.

Operations 13

PATCH /users/confirm #
DELETE /users/delete #
GET /users/delete-reasons #
POST /users/employment #
GET /users/matches #
GET /users/matches/salary #
DELETE /users/matches/{job_id} #
GET /users/nickname-generation #
PATCH /users/resend-confirm #

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

nobueno-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jungle admin Users API
  description: Here magic happens
  termsOfService: https://www.google.com/policies/terms/
  contact:
    email: mindru.ion97@gmail.com
  license:
    name: BSD License
  version: v1
servers:
- url: https://api.nobueno.com/api
security:
- Bearer: []
- Device-type: []
- REFETCH_SCHEMA_WITH_AUTH: []
- x-app-id: []
- x-scheme: []
tags:
- name: users
paths:
  /users/confirm:
    parameters: []
    patch:
      operationId: users_confirm
      description: ''
      responses:
        '200':
          description: User confirmation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
      tags:
      - users
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConfirmUser'
        required: true
  /users/delete:
    parameters: []
    delete:
      operationId: users_delete
      description: ''
      responses:
        '200':
          description: User confirmation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
      tags:
      - users
  /users/delete-reasons:
    parameters: []
    get:
      operationId: users_reasons_to_delete
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: User confirmation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
      tags:
      - users
  /users/employment:
    parameters: []
    post:
      operationId: users_add_employment
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnUserEmployment'
      tags:
      - users
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserEmployment'
        required: true
  /users/matches:
    parameters: []
    get:
      operationId: users_matches
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJobForCandidate'
      tags:
      - users
  /users/matches/salary:
    parameters: []
    get:
      operationId: users_matches_salary_matches
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJobForCandidate'
      tags:
      - users
  /users/matches/{job_id}:
    parameters:
    - name: job_id
      in: path
      required: true
      schema:
        type: string
    delete:
      operationId: users_delete_match
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - users
  /users/nickname-generation:
    parameters: []
    get:
      operationId: users_nickname-generation_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NicknameGeneration'
      tags:
      - users
  /users/recommended-jobs:
    parameters: []
    get:
      operationId: users_recommended_jobs
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJobForCandidate'
      tags:
      - users
  /users/recommended-jobs-count:
    parameters: []
    get:
      operationId: users_recommended_jobs_count
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/JobRecommended'
      tags:
      - users
  /users/recommended-jobs/salary:
    parameters: []
    get:
      operationId: users_recommended-jobs_salary
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJobForCandidate'
      tags:
      - users
  /users/recommended-jobs/{job_id}/change_status:
    parameters:
    - name: job_id
      in: path
      required: true
      schema:
        type: string
    patch:
      operationId: users_recommended-jobs_job_change_status
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChangeStatus'
      tags:
      - users
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeStatus'
        required: true
  /users/resend-confirm:
    parameters: []
    patch:
      operationId: users_resend_confirm
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfirmUser'
      tags:
      - users
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConfirmUser'
        required: true
components:
  schemas:
    Language:
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
    CityName:
      title: City
      required:
      - title
      - code
      type: object
      properties:
        title:
          title: Title
          type: string
          maxLength: 200
          minLength: 1
        id:
          title: ID
          type: integer
          readOnly: true
        code:
          title: Code
          type: string
          minLength: 1
    ChangeStatus:
      required:
      - status
      type: object
      properties:
        status:
          title: Status
          type: string
          enum:
          - accepted
          - declined
          - pending
    JobRecommended:
      required:
      - total_recommended_jobs
      - avg_salary
      type: object
      properties:
        total_recommended_jobs:
          title: Total recommended jobs
          type: integer
        avg_salary:
          title: Avg salary
          type: integer
    ReturnUser:
      title: User
      required:
      - email
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        name:
          title: Name
          type: string
          readOnly: true
        email:
          title: Email
          type: string
          format: email
          maxLength: 254
          minLength: 1
        companies:
          type: array
          items:
            type: integer
          readOnly: true
          uniqueItems: true
        language:
          title: Language
          type: string
          enum:
          - en
          - es
          - ar
          - ur
          - fr
    ReturnJobForCandidate:
      required:
      - title
      - city
      - country
      - languages
      - opportunity_type
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          $ref: '#/components/schemas/ReturnJobRole'
        description:
          title: Description
          type:
          - string
          - 'null'
          minLength: 1
        is_active:
          title: Is active
          type: boolean
        salary:
          title: Salary
          type: string
          readOnly: true
        company:
          title: Company
          type: string
          readOnly: true
        city:
          $ref: '#/components/schemas/CityName'
        country:
          $ref: '#/components/schemas/CountryName'
        salary_currency:
          title: Salary currency
          type: string
          readOnly: true
        technical_score:
          title: Technical score
          type: string
          readOnly: true
        soft_score:
          title: Soft score
          type: string
          readOnly: true
        language_score:
          title: Language score
          type: string
          readOnly: true
        languages:
          type: array
          items:
            $ref: '#/components/schemas/Language'
        personal_score:
          title: Personal score
          type: string
          readOnly: true
        job_status:
          title: Job status
          type: string
          readOnly: true
        chat:
          title: Chat
          type: string
          readOnly: true
        value_score:
          title: Value score
          type: string
          readOnly: true
        nickname:
          title: Nickname
          type: string
          readOnly: true
        opportunity_type:
          title: Opportunity type
          type: string
          enum:
          - full_time
          - part_time
          - freelance
          - internship
        review:
          title: Review
          type:
          - string
          - 'null'
          enum:
          - accepted
          - declined
          - pending
    ReturnCompany:
      title: Company
      required:
      - years
      - description
      type: object
      properties:
        company_title:
          title: Company title
          type: string
          readOnly: true
        years:
          title: Years
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        len_employers:
          type: array
          items:
            title: Len employers
            type: integer
            maximum: 2147483647
            minimum: -2147483648
        description:
          title: Description
          type: string
          minLength: 1
        id:
          title: ID
          type: integer
          readOnly: true
        website:
          title: Website
          type:
          - string
          - 'null'
          maxLength: 300
          minLength: 1
    ReturnUserEmployment:
      required:
      - company
      - user
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        role:
          title: Role
          type: string
          enum:
          - owner
          - recruiter
          - request_pending
          - declined
        description:
          title: Description
          type: string
          maxLength: 300
        date_joined:
          title: Date joined
          type: string
          format: date-time
        company:
          $ref: '#/components/schemas/ReturnCompany'
        user:
          $ref: '#/components/schemas/ReturnUser'
    ReturnJobRole:
      title: Title
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
        status:
          title: Status
          type: string
          enum:
          - accepted
          - declined
          - pending
    CountryName:
      title: Country
      required:
      - title
      - code
      type: object
      properties:
        title:
          title: Title
          type: string
          maxLength: 200
          minLength: 1
        code:
          title: Code
          type: string
          maxLength: 2
          minLength: 1
        id:
          title: ID
          type: integer
          readOnly: true
    SuccessResponse:
      required:
      - message
      type: object
      properties:
        success:
          title: Success
          type: boolean
          default: true
        message:
          title: success message
          type: string
          minLength: 1
    ConfirmUser:
      required:
      - token
      type: object
      properties:
        token:
          title: Token
          type: string
          minLength: 1
    UserEmployment:
      required:
      - company
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        role:
          title: Role
          type: string
          enum:
          - owner
          - recruiter
          - request_pending
          - declined
          readOnly: true
        description:
          title: Description
          type: string
          maxLength: 300
        date_joined:
          title: Date joined
          type: string
          format: date-time
          readOnly: true
        user:
          title: User
          type: integer
          readOnly: true
        company:
          title: Company
          type: integer
    NicknameGeneration:
      required:
      - nickname
      type: object
      properties:
        nickname:
          title: Nickname
          type: string
          minLength: 1
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header
    Device-type:
      type: apiKey
      name: Device-Type
      in: header
    x-scheme:
      type: apiKey
      name: x-scheme
      in: header
    x-app-id:
      type: apiKey
      name: x-app-id
      in: header