Skip to main content

estuary-client.MetricsApi

All URIs are relative to https://api.estuary.tech

MethodHTTP requestDescription
public_metrics_deals_on_chain_getGET /public/metrics/deals-on-chainGet deal metrics

public_metrics_deals_on_chain_get

public_metrics_deals_on_chain_get()

Get deal metrics

This endpoint is used to get deal metrics

Example

from __future__ import print_function
import time
import estuary-client
from estuary-client.rest import ApiException
from pprint import pprint

# Configure API key authorization: bearerAuth
configuration = estuary-client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'

# create an instance of the API class
api_instance = estuary-client.MetricsApi(estuary-client.ApiClient(configuration))

try:
# Get deal metrics
api_instance.public_metrics_deals_on_chain_get()
except ApiException as e:
print("Exception when calling MetricsApi->public_metrics_deals_on_chain_get: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]