NexGen Cloud Buckets API

A bucket is an S3-compatible object storage container. Buckets are region-scoped and accessed via standard S3 SDKs once you have access keys. Use these endpoints to list and delete buckets, bucket creation happens through the S3 protocol against the bucket endpoint URL, not this API.

Business capability
IT Infrastructure Management BC-600.50

Operations 3

GET /object-storage/buckets List buckets #
GET /object-storage/buckets/{bucket_name} Retrieve a bucket #
DELETE /object-storage/buckets/{bucket_name} Delete a bucket #

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-buckets-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-buckets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infrahub Buckets API
  version: '1.0'
servers:
- url: https://infrahub-api.nexgencloud.com/v1
security:
- accessToken: []
- apiKey: []
tags:
- name: Buckets
paths:
  /object-storage/buckets:
    get:
      tags:
      - Buckets
      summary: List buckets
      operationId: listBucketsEndpoint
      parameters:
      - name: search
        in: query
        schema: {}
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/object_storage__BucketListResponse'
        '422':
          description: Validation Error
          content: {}
  /object-storage/buckets/{bucket_name}:
    get:
      tags:
      - Buckets
      summary: Retrieve a bucket
      operationId: retrieveBucketEndpoint
      parameters:
      - name: bucket_name
        in: path
        required: true
        schema: {}
      - name: region
        in: query
        required: true
        schema: {}
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/object_storage__BucketResponse'
        '422':
          description: Validation Error
          content: {}
    delete:
      tags:
      - Buckets
      summary: Delete a bucket
      operationId: deleteBucketEndpoint
      parameters:
      - name: bucket_name
        in: path
        required: true
        schema: {}
      - name: region
        in: query
        required: true
        schema: {}
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/object_storage__DeleteResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/object_storage__ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/object_storage__ErrorResponse'
        '422':
          description: Validation Error
          content: {}
components:
  schemas:
    object_storage__ErrorResponse:
      title: ErrorResponse
      required:
      - error_reason
      - message
      type: object
      properties:
        error_reason:
          title: Error Reason
          type: string
        message:
          title: Message
          type: string
        status:
          title: Status
          type: boolean
          default: false
    object_storage__RegionsEnum:
      title: RegionsEnum
      type: string
      enum:
      - CANADA-1
    object_storage__DeleteResponse:
      title: DeleteResponse
      required:
      - message
      type: object
      properties:
        message:
          title: Message
          type: string
    object_storage__BucketListResponse:
      title: BucketListResponse
      required:
      - buckets
      type: object
      properties:
        buckets:
          title: Buckets
          type: array
          items:
            $ref: '#/components/schemas/object_storage__BucketResponse'
        failed_regions:
          title: Failed Regions
          type: array
          items:
            type: string
    object_storage__BucketResponse:
      title: BucketResponse
      required:
      - created_at
      - endpoint
      - name
      - num_objects
      - region
      - size_bytes
      - size_bytes_actual
      type: object
      properties:
        created_at:
          title: Created At
          type: string
          format: date-time
        endpoint:
          title: Endpoint
          type: string
        name:
          title: Name
          type: string
        num_objects:
          title: Num Objects
          type: integer
          description: Number of objects
        region:
          $ref: '#/components/schemas/object_storage__RegionsEnum'
        size_bytes:
          title: Size Bytes
          type: integer
          description: Accumulated size in bytes
        size_bytes_actual:
          title: Size Bytes Actual
          type: integer
          description: Size utilized in bytes
  securitySchemes:
    accessToken:
      type: apiKey
      description: Bearer Token
      name: Authorization
      in: header
    apiKey:
      type: apiKey
      description: Send it as api_key in header
      name: api_key
      in: header
x-original-swagger-version: '2.0'