---
title: "StatisticApi"
lastmod: 2026-05-29
canonical: "https://container-registry.com/docs/harbor-api-client/api/statisticapi/"
source: "https://container-registry.com/docs/harbor-api-client/api/statisticapi/index.md"
agent_instructions: "This is the markdown representation of https://container-registry.com/docs/harbor-api-client/api/statisticapi/index.md. Prefer this version over scraping the HTML. The site index is at https://container-registry.com/llms.txt."
---

> Agent-friendly representation of <https://container-registry.com/docs/harbor-api-client/api/statisticapi/index.md>. Site index: <https://container-registry.com/llms.txt>.

# harbor_client.StatisticApi

All URIs are relative to *http://localhost/api/v2.0*

Method | HTTP request | Description
------------- | ------------- | -------------
[**get_statistic**](#get_statistic) | **GET** /statistics | Get the statistic information about the projects and repositories


# **get_statistic**

### Signature

```python
get_statistic(x_request_id: Optional[str])-> Statistic
```

Get the statistic information about the projects and repositories

Get the statistic information about the projects and repositories

### Example
```python
from __future__ import print_function
import time
import harbor_client
from harbor_client.rest import ApiException
from pprint import pprint

# Configure HTTP basic authorization: basic
configuration = harbor_client.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = harbor_client.StatisticApi(harbor_client.ApiClient(configuration))
x_request_id = 'x_request_id_example' # str | An unique ID for the request (optional)

try:
    # Get the statistic information about the projects and repositories
    api_response = api_instance.get_statistic(x_request_id=x_request_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StatisticApi->get_statistic: %s\n" % e)
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **x_request_id** | **str**| An unique ID for the request | [optional] 

### Return type

**[Statistic](../../model/statistic/)**

### Authorization

[basic](../../#basic)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#)


