RapidAPI · Schema

ApiCreateInput

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
name string Display name of the API
description string Short description of the API
longDescription string Detailed description of the API and its use cases
category string The category to assign the API to
websiteUrl string URL to the website providing the API
imageFile string API icon image file in PNG or JPG format, recommended 500x500 px
View JSON Schema on GitHub

JSON Schema

rapidapi-apicreateinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiCreateInput",
  "title": "ApiCreateInput",
  "type": "object",
  "required": [
    "name",
    "description",
    "category"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the API"
    },
    "description": {
      "type": "string",
      "description": "Short description of the API"
    },
    "longDescription": {
      "type": "string",
      "description": "Detailed description of the API and its use cases"
    },
    "category": {
      "type": "string",
      "description": "The category to assign the API to"
    },
    "websiteUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the website providing the API"
    },
    "imageFile": {
      "type": "string",
      "format": "binary",
      "description": "API icon image file in PNG or JPG format, recommended 500x500 px"
    }
  }
}