Subscription Information
This feature is supported on the Cloud (SaaS) platform, with an Enterprise X or Enterprise+ license.
Description: Returns a list of all the JFrog servers defined in your subscription. Filter or sort the list as your application requires.
For each server, the list reports the following fields:
server_name: the name of the server
server_type: the type you chose when you created the server:
Platform
Distribution Edge
Smart Archive
cloud_provider: the Cloud vendor that hosts the server
region: the geographical location of the server in the vendor cloud
Related documentation: Manage Your Cloud Topology.
Since: September 27, 2025
Security: Requires a valid token
Usage: GET https://my.jfrog.com/api/jmis/v1/servers
Returns: application/json
Sample Usage:
curl --location 'https://my.jfrog.com/api/jmis/v1/servers' \ --header 'Authorization: Bearer '
Sample Response:
{
"servers": [
{
"server_name": "myServer01",
"server_type": "Platform",
"cloud_provider": "Amazon Web Services",
"region": "EU Central"
},
{
"server_name": "myServer02",
"server_type": "Distribution Edge",
"cloud_provider": "Google Cloud Platform",
"region": "Hong Kong"
},
{
"server_name": "myServer03",
"server_type": "Smart Archive",
"cloud_provider": "Amazon Web Services",
"region": "EU Central"
}
]
}Response Status Codes:
200: Success
400: Failed
403: Action not permitted for this account
401: Unauthorized user