Rackspace Technology Pricing API

Commit and volume pricing grid operations.

Operations 5

GET /v2/commitGrids Get Commit Grids #
GET /v2/commitGrids/{gridId} Get Commit Grid #
GET /v2/volumeGrids Get Volume Grids #
GET /v2/volumeGrids/{gridId} Get Volume Grid #
POST /v2/calculate/discount Calculate Discount #

Documentation

Specifications

Schemas & Data

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/rackspace-technology-pricing-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

rackspace-technology-pricing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rackspace Offer Pricing API
  version: '2.0'
  description: The Rackspace Offer API (v2) exposes the Rackspace offerings catalog, including offerings, products, currency, and pricing grids (commit grids, volume grids). It supports listing offerings by line-of-business and status, retrieving products, and computing discounts via commit and volume grids.
  contact:
    name: Rackspace Technology
    url: https://www.rackspace.com/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  x-generated-from: documentation
  x-source-url: https://github.com/rackerlabs/docs-offerings
  x-last-validated: '2026-05-05'
servers:
- url: https://offerings.api.rackspacecloud.com
  description: Rackspace Offerings API endpoint.
security:
- AuthToken: []
tags:
- name: Pricing
  description: Commit and volume pricing grid operations.
paths:
  /v2/commitGrids:
    get:
      operationId: getCommitGrids
      summary: Get Commit Grids
      description: Lists commit-pricing grids.
      tags:
      - Pricing
      parameters:
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Marker'
      responses:
        '200':
          description: Commit grids returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommitGridList'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /v2/commitGrids/{gridId}:
    parameters:
    - in: path
      name: gridId
      required: true
      schema:
        type: string
    get:
      operationId: getCommitGrid
      summary: Get Commit Grid
      tags:
      - Pricing
      responses:
        '200':
          description: Commit grid returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommitGrid'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /v2/volumeGrids:
    get:
      operationId: getVolumeGrids
      summary: Get Volume Grids
      description: Lists volume-pricing grids.
      tags:
      - Pricing
      responses:
        '200':
          description: Volume grids returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VolumeGridList'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /v2/volumeGrids/{gridId}:
    parameters:
    - in: path
      name: gridId
      required: true
      schema:
        type: string
    get:
      operationId: getVolumeGrid
      summary: Get Volume Grid
      tags:
      - Pricing
      responses:
        '200':
          description: Volume grid returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VolumeGrid'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /v2/calculate/discount:
    post:
      operationId: calculateDiscount
      summary: Calculate Discount
      description: Computes the discounted price for a quantity given the applicable commit/volume grids.
      tags:
      - Pricing
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DiscountCalculationRequest'
      responses:
        '200':
          description: Discount calculation result returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DiscountCalculationResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    VolumeGrid:
      title: VolumeGrid
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        currency:
          type: string
        tiers:
          type: array
          items:
            type: object
            properties:
              minVolume:
                type: number
              maxVolume:
                type: number
              discountPercent:
                type: number
    VolumeGridList:
      title: VolumeGridList
      type: object
      properties:
        volumeGrids:
          type: array
          items:
            $ref: '#/components/schemas/VolumeGrid'
    CommitGridList:
      title: CommitGridList
      type: object
      properties:
        commitGrids:
          type: array
          items:
            $ref: '#/components/schemas/CommitGrid'
    DiscountCalculationResponse:
      title: DiscountCalculationResponse
      type: object
      properties:
        productCode:
          type: string
        quantity:
          type: number
        listPrice:
          type: number
        discountPercent:
          type: number
        finalPrice:
          type: number
        currency:
          type: string
    DiscountCalculationRequest:
      title: DiscountCalculationRequest
      type: object
      required:
      - productCode
      - quantity
      properties:
        productCode:
          type: string
        quantity:
          type: number
        currency:
          type: string
        commitGridId:
          type: string
        volumeGridId:
          type: string
    CommitGrid:
      title: CommitGrid
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        currency:
          type: string
        tiers:
          type: array
          items:
            type: object
            properties:
              minCommit:
                type: number
              maxCommit:
                type: number
              discountPercent:
                type: number
  parameters:
    Limit:
      in: query
      name: limit
      required: false
      schema:
        type: integer
        default: 100
        maximum: 100
    Marker:
      in: query
      name: marker
      required: false
      description: Pagination marker (the starting point for the next batch of items).
      schema:
        type: string
  securitySchemes:
    AuthToken:
      type: apiKey
      in: header
      name: X-Auth-Token