from meetkai_mka1 import SDKwith SDK( bearer_auth="<YOUR_BEARER_TOKEN_HERE>",) as sdk: res = sdk.llm.models.get_cluster_currency() # Handle response print(res)
{ "currency": "<string>"}
Models
Get the cluster currency
Returns the single cluster-wide ISO-4217 currency code (null if not set).
GET
/
api
/
v1
/
llm
/
models
/
pricing
/
currency
Python (SDK)
from meetkai_mka1 import SDKwith SDK( bearer_auth="<YOUR_BEARER_TOKEN_HERE>",) as sdk: res = sdk.llm.models.get_cluster_currency() # Handle response print(res)
Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.