NoBueno messages API

The messages API from NoBueno — 6 operation(s) for messages.

Operations 10

GET /messages #
POST /messages #
GET /messages/{id} #
PUT /messages/{id} #
PATCH /messages/{id} #
DELETE /messages/{id} #
POST /messages/{id}/read_messages #
GET /messages/{id}/retrieve #
POST /messages/{id}/review #
POST /messages/{id}/send-message #

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-messages-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-messages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jungle admin Messages 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: messages
paths:
  /messages:
    parameters: []
    get:
      operationId: messages_list
      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/ReturnMessenger'
      tags:
      - messages
    post:
      operationId: messages_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnMessenger'
      tags:
      - messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Messenger'
        required: true
  /messages/{id}:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this user messenger.
      required: true
      schema:
        type: integer
    get:
      operationId: messages_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnChat'
      tags:
      - messages
    put:
      operationId: messages_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnMessenger'
      tags:
      - messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Messenger'
        required: true
    patch:
      operationId: messages_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnMessenger'
      tags:
      - messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Messenger'
        required: true
    delete:
      operationId: messages_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - messages
  /messages/{id}/read_messages:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this user messenger.
      required: true
      schema:
        type: integer
    post:
      operationId: messages_read_messages
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnMessenger'
      tags:
      - messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Messenger'
        required: true
  /messages/{id}/retrieve:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this user messenger.
      required: true
      schema:
        type: integer
    get:
      operationId: messages_retrieve_messenger
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnMessenger'
      tags:
      - messages
  /messages/{id}/review:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this user messenger.
      required: true
      schema:
        type: integer
    post:
      operationId: messages_review
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
      tags:
      - messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Review'
        required: true
  /messages/{id}/send-message:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this user messenger.
      required: true
      schema:
        type: integer
    post:
      operationId: messages_send_message
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShowUploadFiles'
      tags:
      - messages
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                files:
                  type: array
                  items:
                    type: string
                    minLength: 1
                message:
                  type: string
components:
  schemas:
    ReturnJobBase:
      title: Job
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          minLength: 1
        company:
          title: Company
          type: string
          readOnly: true
    SuccessResponse:
      required:
      - message
      type: object
      properties:
        success:
          title: Success
          type: boolean
          default: true
        message:
          title: success message
          type: string
          minLength: 1
    ReturnUserBaseChatEmployer:
      title: Employer
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        nickname:
          title: Nickname
          type: string
          readOnly: true
        name:
          title: Name
          type: string
          readOnly: true
        image:
          title: Image
          type:
          - string
          - 'null'
          readOnly: true
          format: uri
        language:
          title: Language
          type: string
          enum:
          - en
          - es
          - ar
          - ur
          - fr
    ReturnUserBaseChat:
      title: Candidate
      required:
      - working_years
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        nickname:
          title: Nickname
          type: string
          readOnly: true
        name:
          title: Name
          type: string
          readOnly: true
        image:
          title: Image
          type:
          - string
          - 'null'
          readOnly: true
          format: uri
        working_years:
          title: Working years
          type: integer
        language:
          title: Language
          type: string
          enum:
          - en
          - es
          - ar
          - ur
          - fr
    Review:
      type: object
      properties:
        rating:
          title: Rating
          type: number
        description:
          title: Description
          type:
          - string
          - 'null'
          minLength: 1
        relevant_match:
          title: Relevant match
          type: number
    ShowUploadFiles:
      type: object
      properties:
        files:
          type:
          - array
          - 'null'
          items:
            description: here is a file
            type: string
            minLength: 1
        message:
          title: Message
          type:
          - string
          - 'null'
    ReturnChat:
      required:
      - message
      - attachments
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        message:
          title: Message
          type: string
          minLength: 1
        created_at:
          title: Created at
          type: string
          format: date-time
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Attachment'
        user_to:
          title: User to
          type: string
          readOnly: true
        user_from:
          title: User from
          type: string
          readOnly: true
    ReturnMessenger:
      required:
      - candidate
      - employer
      - job
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        candidate:
          $ref: '#/components/schemas/ReturnUserBaseChat'
        employer:
          $ref: '#/components/schemas/ReturnUserBaseChatEmployer'
        job:
          $ref: '#/components/schemas/ReturnJobBase'
        employer_review:
          title: Employer review
          type: boolean
        candidate_review:
          title: Candidate review
          type: boolean
        unread_messages:
          title: Unread messages
          type: string
          readOnly: true
    Messenger:
      required:
      - job
      - candidate
      - employer
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        employer_review:
          title: Employer review
          type: boolean
        employer_hide_image:
          title: Employer hide image
          type: boolean
        candidate_review:
          title: Candidate review
          type: boolean
        candidate_hide_image:
          title: Candidate hide image
          type: boolean
        job:
          title: Job
          type: integer
        candidate:
          title: Candidate
          type: integer
        employer:
          title: Employer
          type: integer
    Attachment:
      required:
      - title
      - type
      - size
      type: object
      properties:
        path:
          title: Path
          type: string
          readOnly: true
          format: uri
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
        type:
          title: Type
          type: string
          maxLength: 100
          minLength: 1
        size:
          title: Size
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        extension:
          title: Extension
          type: string
          readOnly: true
  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