GET
/
cloud
/
v2
/
inference
/
registries
/
{registry_id}
Get Registry
curl --request GET \
  --url https://api.gcore.com/cloud/v2/inference/registries/{registry_id} \
  --header 'Authorization: <api-key>'
{
  "created_at": "2023-01-20T00:00:00Z",
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "My Registry",
  "url": "docker.io",
  "username": "myusername"
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

registry_id
string
required

Registry ID

Response

Registry

created_at
string<date-time>
required

Registry creation date in ISO 8601 format.

Examples:

"2023-01-20T00:00:00Z"

id
string<uuid>
required

Registry ID.

Examples:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

name
string
required

Registry name.

Required string length: 1 - 250
Examples:

"My Registry"

url
string
required

Registry URL

Required string length: 1 - 400
Examples:

"docker.io"

username
string
required

Registry username.

Required string length: 1 - 100
Examples:

"myusername"