> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sync Model

> This endpoint allows users to sync models between two enterprise servers.

## Request

Send a `POST` request to below endpoint to sync models of one enterprise server with another server

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/pony/sync_models' \
```

## Body Attributes

<ParamField path="key" type="string" required>
  Your enterprise API Key used for request authorization.
</ParamField>

<ParamField path="sync_key" type="string" required>
  The enterprise API Key of the second server you want to sync with.
</ParamField>

## Body

```json json theme={null}
{  
    "key": "enterprise_api_key",  
    "sync_key": "enterprise_api_key"
}
```
