> ## Documentation Index
> Fetch the complete documentation index at: https://novita.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Check If Member Budget Is Sufficient

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format, for example: Bearer \{\{API Key}}.
</ParamField>

## Request Body

<ParamField body="member_id" type="string" required={true}>
  The sub-user account ID of the member to check.
</ParamField>

## Response Parameters

<ResponseField name="enough" type="bool" required={true}>
  Whether the member's remaining budget is sufficient (i.e., remaining balance is greater than zero).
</ResponseField>

<RequestExample>
  ```bash theme={"system"}
  curl --request POST \
    --url https://api.novita.ai/openapi/v1/user/team/check-budget \
    --header 'Authorization: Bearer <API_KEY>' \
    --header 'Content-Type: application/json' \
    --data '{"member_id": "<string>"}'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"system"}
  {
    "enough": true
  }
  ```
</ResponseExample>
