Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Latest commit

 

History

History
57 lines (38 loc) · 1.67 KB

File metadata and controls

57 lines (38 loc) · 1.67 KB

originstamp_client.APIKeyApi

All URIs are relative to https://api.originstamp.com

Method HTTP request Description
get_api_key_usage GET /v3/api_key/usage Usage

get_api_key_usage

DefaultUsageResponse get_api_key_usage(authorization)

Usage

With this interface you can receive the current usage of your API key. The usage statistic refers to the associated account.

Example

from __future__ import print_function
import time
import originstamp_client
from originstamp_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = originstamp_client.APIKeyApi()
authorization = 'authorization_example' # str | A valid API key is essential for authorization to handle the request.

try:
    # Usage
    api_response = api_instance.get_api_key_usage(authorization)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIKeyApi->get_api_key_usage: %s\n" % e)

Parameters

Name Type Description Notes
authorization str A valid API key is essential for authorization to handle the request.

Return type

DefaultUsageResponse

Authorization

[API Key Authorization](../README.md#API Key Authorization)

HTTP request headers

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

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