🔗 Console REST APIProducts

Get all products

Retrieves all available API products with pricing information. Use productName to limit the response to a single product by name or ID.

GET
/api/products
Authorization<token>

API Key is required to access the endpoints

In: header

Query Parameters

productName?string

Response Body

curl -X GET "https://api-console.apibricks.io/api/products"
[
  {
    "id": "string",
    "name": "string",
    "isApiProductType": true,
    "displayOrder": 0,
    "productLine": "string",
    "skus": [
      {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "name": "string",
        "quotaKey": "string",
        "quotaValueDefault": 0,
        "goLiveDate": "2019-08-24T14:15:22Z",
        "billingDateStartInclusive": "2019-08-24T14:15:22Z",
        "billingDateEndExclusive": "2019-08-24T14:15:22Z",
        "prices": [
          {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "description": "string",
            "beginRange": 0,
            "displayUnit": "string",
            "pricePerUnitUSD": 0.1,
            "unitsToDisplayUnit": 0,
            "unitsToPriceUnit": 0
          }
        ]
      }
    ]
  }
]
Empty
Service StatusGitHub SDK