RapidAPI · Schema

HubCategory

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
id string Unique identifier for the category
name string Category display name
slug string URL-friendly category slug
apiCount integer Number of APIs in this category
View JSON Schema on GitHub

JSON Schema

rapidapi-hubcategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HubCategory",
  "title": "HubCategory",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the category"
    },
    "name": {
      "type": "string",
      "description": "Category display name"
    },
    "slug": {
      "type": "string",
      "description": "URL-friendly category slug"
    },
    "apiCount": {
      "type": "integer",
      "description": "Number of APIs in this category"
    }
  }
}