Rose Rocket Boards API

The Boards API from Rose Rocket — 1 operation(s) for boards.

Operations 1

GET /boards/nav List boards.

Documentation

Specifications

Other Resources

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/rose-rocket-boards-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rose-rocket-boards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rose Rocket Platform Model Boards API
  version: 1.0.0
  description: ''
servers:
- url: https://example-org.roserocket.com/api/v2/platformModel
  description: Your organization's hostname with customized subdomain, e.g. "example-org".
- url: https://roserocket.com/api/v2/platformModel
  description: Generic hostname without a customized subdomain.
tags:
- name: Boards
paths:
  /boards/nav:
    get:
      summary: List boards.
      tags:
      - Boards
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BoardFindNavItemsRequest'
      responses:
        '200':
          description: Returns the found records.
          content:
            application/json:
              schema:
                description: The requested page of results
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: Use this is the "boardId" referenced in the object record service and elsewhere.
                    name:
                      type: string
                    icon:
                      type:
                      - string
                      - 'null'
                    objectKey:
                      type: string
                    createdAt:
                      type: string
                    isExternal:
                      type: boolean
components:
  schemas:
    BoardFindNavItemsRequest:
      type: object
      properties:
        orderBy:
          type: object
        orderByDirection:
          type: string
          enum:
          - asc
          - desc
        objectKey:
          type: string
        offset:
          type: number
        limit:
          type: number
x-readme:
  explorer-enabled: true
  proxy-enabled: true