Basic
Model APIs
- Introduction
- LLM API
- Image, Audio and Video
GPUs
- GPU Instance
- Cluster
- Instance
- Template
- Product
- Network
- Image Registry
- Storage
- Serverless GPUs
Network
Get VPC Network
GET
/
gpu-instance
/
openapi
/
v1
/
network
Copy
Ask AI
curl --request GET \
--url https://api.novita.ai/gpu-instance/openapi/v1/network \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'
Copy
Ask AI
{
"network": [
{
"Id": "<string>",
"user": "<string>",
"name": "<string>",
"state": [
{
"state": "<string>",
"error": "<string>"
}
],
"segment": "<string>",
"clusterId": "<string>",
"Addresses": [
{
"Id": "<string>",
"Ip": "<string>"
}
],
"createTime": "<string>"
}
]
}
Request Headers
Enum: application/json
Bearer authentication format, for example: Bearer {{API Key}}.
Query Parameters
Cluster ID. String, length limit: 1-255 characters. Only one is supported.
Response
VPC network information.
VPC network ID.
User account ID.
VPC network name.
VPC network segment.
Cluster ID.
VPC network creation time. Format: Unix timestamp.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.novita.ai/gpu-instance/openapi/v1/network \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>'
Copy
Ask AI
{
"network": [
{
"Id": "<string>",
"user": "<string>",
"name": "<string>",
"state": [
{
"state": "<string>",
"error": "<string>"
}
],
"segment": "<string>",
"clusterId": "<string>",
"Addresses": [
{
"Id": "<string>",
"Ip": "<string>"
}
],
"createTime": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.