Let's learn more about authenticating with the RocketCAD API.
The RocketCAD API relies on API Keys to authenticate requests. API Keys can be created and customized from your Owner Panel > Integration menu.
Your API Keys may carry many permissions, be sure to keep them secure. Do not publicly share your API Key or reveal it in Github, client-side code, etc.
The standard RocketCAD API authentication will appear like the following example:
In this example, you are only required to supply a valid API Key, such as the example above.
Query Parameters
Name
Type
Description
api_key
string
The API Key query parameter is required for all requests. API Keys can be generated from the Owner Panel > API Access tab.
Request Body
Name
Type
Description
communityID
string
The communityID body parameter may be required in specific contexts.
serverID
string
The serverID body parameter may be requierd in specific contexts.
{
"status": "success",
"response": {
"success": true,
"message": "This API Key is valid & associated with an active community."
"requestID": "OLV213JN6XL1BLS"
}
}