NoBueno devices API

The devices API from NoBueno — 2 operation(s) for devices.

Operations 6

GET /devices/ #
POST /devices/ #
GET /devices/{id}/ #
PUT /devices/{id}/ #
PATCH /devices/{id}/ #
DELETE /devices/{id}/ #

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-devices-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-devices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jungle admin Devices 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: devices
paths:
  /devices/:
    parameters: []
    get:
      operationId: devices_list
      description: ''
      parameters:
      - 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/FCMDevice'
      tags:
      - devices
    post:
      operationId: devices_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FCMDevice'
      tags:
      - devices
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FCMDevice'
        required: true
  /devices/{id}/:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this FCM device.
      required: true
      schema:
        type: integer
    get:
      operationId: devices_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FCMDevice'
      tags:
      - devices
    put:
      operationId: devices_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FCMDevice'
      tags:
      - devices
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FCMDevice'
        required: true
    patch:
      operationId: devices_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FCMDevice'
      tags:
      - devices
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FCMDevice'
        required: true
    delete:
      operationId: devices_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - devices
components:
  schemas:
    FCMDevice:
      required:
      - registration_id
      - type
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        name:
          title: Name
          type:
          - string
          - 'null'
          maxLength: 255
        registration_id:
          title: Registration token
          type: string
          minLength: 1
        device_id:
          title: Device ID
          description: Unique device identifier
          type:
          - string
          - 'null'
          maxLength: 150
        active:
          title: Is active
          description: Inactive devices will not be sent notifications
          type: boolean
          default: true
        date_created:
          title: Creation date
          type: string
          format: date-time
          readOnly: true
        type:
          title: Type
          type: string
          enum:
          - ios
          - android
          - web
  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