Describe Project (V2)
This operation returns the details of a specified project.
The base URL for this API is in the following format:
https://api.cloud.zilliz.com
The endpoints on the control plane currently supports up to 20 requests per second per user per endpoint.
export BASE_URL="https://api.cloud.zilliz.com"
The authentication token should be an API key with appropriate privileges or a pair of colon-joined username and password, like username:password.
The ID of the project to describe.
export TOKEN="YOUR_API_KEY"
export projectId="proj-xx"
curl --request GET \
--url "${BASE_URL}/v2/projects/${projectId}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
A success response
Response code.
Response payload which contains the details of the specified project.
ID of the project.
Name of the project.
Number of clusters in the project.
Time at which the project is created.
The subscription plan of the current project. The possible values are Standard and Enterprise.
A failure response.
Response code.
Error message.
{
"code": 0,
"data": {
"projectId": "proj-x",
"projectName": "My Project",
"instanceCount": 2,
"createTime": "2023-08-16T07:34:06Z",
"plan": "Enterprise"
}
}