> ## 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.

# System Details

> This endpoint returns information about your server.

## Request

Send a `POST` request to below endpoint to get information about your server.

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

## Body

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


## OpenAPI

````yaml POST /flux_headshot/system_details
openapi: 3.0.0
info:
  title: ModelsLab Enterprise Face Gen API
  version: 1.0.0
  description: API for managing enterprise Face Gen server operations.
servers:
  - url: https://modelslab.com/api/v1/enterprise
security: []
paths:
  /flux_headshot/system_details:
    post:
      summary: Get System Details
      description: Retrieve server system details.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKey'
      responses:
        '200':
          description: System details returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemDetailsResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ApiKey:
      type: object
      properties:
        key:
          type: string
          description: Your API key
      required:
        - key
    SystemDetailsResponse:
      type: object
      properties:
        status:
          type: string
          example: success
        model_count:
          type: integer
          example: 0
        queue_time:
          type: integer
          example: 0
    ErrorResponse:
      type: object
      properties:
        status:
          type: string
          example: error
        message:
          type: string
          example: Error description

````