Skip to main content
PUT
/
api
/
v1
/
llm
/
models
/
pricing
/
currency
Python (SDK)
from meetkai_mka1 import SDK


with SDK(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:

    res = sdk.llm.models.set_cluster_currency(currency="Nakfa")

    # Handle response
    print(res)
{
  "currency": "<string>"
}

Authorizations

Authorization
string
header
required

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>.

Body

application/json
currency
string
required
Pattern: ^[A-Za-z]{3}$

Response

200 - application/json

OK

currency
string | null
required