> For the complete documentation index, see [llms.txt](https://docs.meeco.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.meeco.me/openapi-docs/svx-api/system-metrics-experimental.md).

# System Metrics (Experimental)

## Wallet metrics

> Return aggregated wallet metrics for the deployment.\
> \
> Optional query parameters can constrain the aggregation window by wallet creation date.<br>

```json
{"openapi":"3.1.0","info":{"title":"SVX Wallet API","version":"4.0.1"},"servers":[{"url":"https://zyfla-wallet-sandbox.meeco.cloud","description":"SVX Wallet deployment (relative)"}],"security":[{},{"bearerAuth":[]},{"mutualTLS":[]}],"components":{"securitySchemes":{"bearerAuth":{"bearerFormat":"JWT","scheme":"bearer","type":"http"},"mutualTLS":{"type":"mutualTLS"}},"schemas":{"WalletCountsResponseDto":{"properties":{"wallet_metrics":{"$ref":"#/components/schemas/WalletCountsResponseModelDto"}},"required":["wallet_metrics"],"type":"object"},"WalletCountsResponseModelDto":{"properties":{"all_wallets":{"type":"number"},"non_empty_wallets":{"type":"number"}},"required":["all_wallets","non_empty_wallets"],"type":"object"},"InvalidDateFilterValueError":{"properties":{"error":{"description":"Unique error identifier","enum":["invalid_date_filter_value"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"},"InternalServerError":{"properties":{"error":{"description":"Unique error identifier","enum":["internal_server_error"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"}}},"paths":{"/system/metrics/wallets":{"get":{"summary":"Wallet metrics","description":"Return aggregated wallet metrics for the deployment.\n\nOptional query parameters can constrain the aggregation window by wallet creation date.\n","operationId":"SystemMetricsController_getWalletCounts","parameters":[{"description":"Counts only wallets created after the given date","in":"query","name":"start_date","required":false,"schema":{"type":"string"}},{"description":"Counts only wallets created before the given date","in":"query","name":"end_date","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WalletCountsResponseDto"}}},"description":"Metrics successfully fetched"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvalidDateFilterValueError"}}},"description":""},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InternalServerError"}}},"description":""}},"tags":["System Metrics (Experimental)"]}}}}
```

## SVX Verify session metrics

> \>\
> \*\*Experimental.\*\* Returns aggregated counts for SVX Verify sessions,\
> optionally filtered by creation date range.<br>

```json
{"openapi":"3.1.0","info":{"title":"SVX Wallet API","version":"4.0.1"},"servers":[{"url":"https://zyfla-wallet-sandbox.meeco.cloud","description":"SVX Wallet deployment (relative)"}],"security":[{},{"bearerAuth":[]},{"mutualTLS":[]}],"components":{"securitySchemes":{"bearerAuth":{"bearerFormat":"JWT","scheme":"bearer","type":"http"},"mutualTLS":{"type":"mutualTLS"}},"schemas":{"SvxVerifySessionCountsResponseDto":{"properties":{"svx_verify_session_metrics":{"$ref":"#/components/schemas/SvxVerifySessionCountsResponseModelDto"}},"required":["svx_verify_session_metrics"],"type":"object"},"SvxVerifySessionCountsResponseModelDto":{"properties":{"sessions_created_total":{"type":"integer"},"sessions_pending":{"type":"integer"},"sessions_verified_total":{"type":"integer"},"sessions_failed_total":{"type":"integer"}},"required":["sessions_created_total","sessions_pending","sessions_verified_total","sessions_failed_total"],"type":"object"},"InvalidDateFilterValueError":{"properties":{"error":{"description":"Unique error identifier","enum":["invalid_date_filter_value"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"},"InternalServerError":{"properties":{"error":{"description":"Unique error identifier","enum":["internal_server_error"],"type":"string"},"extra_info":{"description":"Object that may contain more information about the error","type":"object"},"message":{"description":"User friendly error message","type":"string"}},"required":["error","message","extra_info"],"type":"object"}}},"paths":{"/system/metrics/svx_verify_sessions":{"get":{"summary":"SVX Verify session metrics","description":">\n**Experimental.** Returns aggregated counts for SVX Verify sessions,\noptionally filtered by creation date range.\n","operationId":"SystemMetricsController_getSessionsCounts","parameters":[{"description":"Counts only sessions created after the given date","in":"query","name":"start_date","required":false,"schema":{"type":"string"}},{"description":"Counts only sessions created before the given date","in":"query","name":"end_date","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SvxVerifySessionCountsResponseDto"}}},"description":"Metrics successfully fetched"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvalidDateFilterValueError"}}},"description":""},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InternalServerError"}}},"description":""}},"tags":["System Metrics (Experimental)"]}}}}
```
