NexGen Cloud Overview API

Organization-level summary and resource usage metrics for the AI Studio account.

Operations 1

GET /org/summary Get organization summary #

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/nexgen-cloud-overview-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

nexgen-cloud-overview-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AI Studio Overview API
  version: '0.1'
  description: 'The AI Studio API is a REST API for the full lifecycle of custom AI models on Hyperstack AI Studio: curate and generate training datasets, fine-tune foundation models on your data, evaluate training results, deploy models, and run inference.'
servers:
- url: https://console.hyperstack.cloud/ai/api/v1
security:
- apiKey: []
tags:
- name: Overview
  description: Organization-level summary and resource usage metrics for the AI Studio account.
paths:
  /org/summary:
    get:
      description: Returns a high-level summary of resource usage and model activity for the authenticated user's organization, including active model counts, recent training job status, and aggregate token usage.
      operationId: getOrgSummary
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationSummaryResponse'
                example:
                  status: success
                  summary:
                    base_models_count: 60
                    datasets_count: 15
                    finetuned_models_count: 16
                    logs_count: 0
              example:
                status: success
                summary:
                  base_models_count: 60
                  datasets_count: 15
                  finetuned_models_count: 16
                  logs_count: 0
          description: OK
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
          description: Not Found
        '422':
          description: Validation Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
          description: Internal Server Error
      summary: Get organization summary
      tags:
      - Overview
components:
  schemas:
    ErrorSchema:
      properties:
        code:
          default: null
          type: integer
          description: HTTP status code associated with the error.
        message:
          type: string
          default: null
          description: Human-readable description of the error.
        status:
          type: string
          default: null
          description: Indicates the result of the operation. Typically `"error"` for failed requests.
      title: ErrorSchema
      type: object
    OrganizationSummary:
      properties:
        base_models_count:
          type: integer
          description: Number of base models available to the organization.
        datasets_count:
          type: integer
          description: Number of datasets created in the organization.
        finetuned_models_count:
          type: integer
          description: Number of fine-tuned models owned by the organization.
        logs_count:
          type: integer
          description: Total number of logs stored in the organization.
      required:
      - base_models_count
      - finetuned_models_count
      - datasets_count
      - logs_count
      title: OrganizationSummary
      type: object
    OrganizationSummaryResponse:
      properties:
        summary:
          $ref: '#/components/schemas/OrganizationSummary'
          description: Aggregated counts of the organization's models, datasets, and logs.
        status:
          default: success
          type: string
          description: Indicates the result of the operation. Typically `"success"`.
      required:
      - summary
      title: OrganizationSummaryResponse
      type: object
  securitySchemes:
    apiKey:
      type: apiKey
      name: api_key
      in: header
      description: 'API-key authentication. Pass your API key as the `api_key` header value (e.g., `api_key: YOUR_API_KEY`, no prefix). [Generate a key in the Hyperstack console](https://console.hyperstack.cloud/api-keys). The key is personal to your user account and works across every environment and region in your organization.'