Skip to main content

Query AIDC List

更新时间:2025-04-02 17:32:25
Query the list of Intelligent Computing Centers for the current enterprise.
GET
https://api.alayanew.com/api/aidc/v1/list
Authorizations
AuthorizationsStringHeaderRequired

用户可通过已获取Open API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。

Response
状态码:application/json
codeInt

Code is a common return value format indicating the execution result of the query operation.

0 is the success identifier, indicating the operation completed successfully.
dataArray

Enumerates the detailed information of the Intelligent Computing Centers.

data.idString

Intelligent Computing Center ID, e.g., 2.

data.codeString

Intelligent Computing Center Code, e.g., dev01-2.

data.nameString

Intelligent Computing Center Name.

data.nameEnString

English name of the Intelligent Computing Center.

data.countryString

Country where the center is located.

data.addressString

Address of the Intelligent Computing Center.

data.endpoIntString

Access endpoint for the Intelligent Computing Center.

msgString

Returns error information when the code value is -1.

curl -X GET 'https://api.alayanew.com/api/aidc/v1/list'      -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
{
    "code": 0,
    "data": [
        {
            "id": 1,
            "code": "cn-beijing-a",
            "name": "Beijing Area 1 Computing Center",
            "nameEn": "Bei Jing AI Data Center",
            "country": "China",
            "address": "Beijing",
            "osmEndpoInt": "https://osm.hd-01.alayanew.com:20443",
            "onlineDate": "2024-03-02 10:00:00",
            "createdTime": null
        },
        {
            "id": 2,
            "code": "dev01-2",
            "name": "Beijing Area 1",
            "nameEn": "Bei Jing AI Data Center",
            "country": "China",
            "address": "Beijing",
            "endpoInt": "https://osm.hd-01.alayanew.com:20443"
        }
    ]
}