Lambda Instance Types API

Operations for listing available GPU instance types.

Operations 1

GET /instance-types List Instance Types #

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/lambda-instance-types-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

lambda-instance-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lambda Cloud File Systems Instance Types API
  description: The Lambda Cloud API allows you to manage GPU cloud instances programmatically. You can launch, list, restart, and terminate instances, manage SSH keys, list available instance types and images, and manage persistent storage file systems through a RESTful interface.
  version: v1
  contact:
    name: Lambda Support
    url: https://support.lambdalabs.com/hc/en-us
  license:
    name: Lambda Terms of Service
    url: https://lambda.ai/legal/terms-of-service
servers:
- url: https://cloud.lambdalabs.com/api/v1
  description: Lambda Cloud API production endpoint
security:
- apiKey: []
tags:
- name: Instance Types
  description: Operations for listing available GPU instance types.
paths:
  /instance-types:
    get:
      operationId: listInstanceTypes
      summary: List Instance Types
      description: Returns a list of available instance types with their specifications and region availability.
      tags:
      - Instance Types
      responses:
        '200':
          description: A list of available instance types.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties:
                      $ref: '#/components/schemas/InstanceType'
              example:
                data:
                  gpu_1x_a100_sxm4:
                    instance_type:
                      name: gpu_1x_a100_sxm4
                      description: 1x A100 SXM4 (40 GB)
                      price_cents_per_hour: 110
                      specs:
                        vcpus: 24
                        memory_gib: 85
                        storage_gib: 512
                    regions_with_capacity_available:
                    - name: us-tx-3
                      description: Austin, Texas
        '401':
          description: Unauthorized.
        '500':
          description: Internal Server Error.
components:
  schemas:
    Region:
      type: object
      properties:
        name:
          type: string
          description: Region identifier.
        description:
          type: string
          description: Human-readable region name.
    InstanceType:
      type: object
      properties:
        instance_type:
          type: object
          properties:
            name:
              type: string
            description:
              type: string
            price_cents_per_hour:
              type: integer
              description: Price in cents per hour.
            specs:
              type: object
              properties:
                vcpus:
                  type: integer
                memory_gib:
                  type: integer
                storage_gib:
                  type: integer
        regions_with_capacity_available:
          type: array
          items:
            $ref: '#/components/schemas/Region'
  securitySchemes:
    apiKey:
      type: http
      scheme: basic
      description: Use your Lambda Cloud API key as the username with no password. Pass via Authorization header as Basic auth.