# Check If Member Budget Is Sufficient - Documentation

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown is available with `Accept: text/markdown` and `.md` URL variants.

Source: /docs/api-reference/budget-check-member-enough

# Check If Member Budget Is Sufficient

POST

/

openapi

/

v1

/

user

/

team

/

check-budget

Try it

```
curl --request POST \
--url https://api.novita.ai/openapi/v1/user/team/check-budget \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{"member_id": ""}'
```

200

```
{
"enough": true
}
```

##

[​](#request-headers)

Request Headers

[​](#param-content-type)

Content-Type

string

required

Enum: `application/json`

[​](#param-authorization)

Authorization

string

required

Bearer authentication format, for example: Bearer {{API Key}}.

##

[​](#request-body)

Request Body

[​](#param-member-id)

member_id

string

required

The sub-user account ID of the member to check.

##

[​](#response-parameters)

Response Parameters

[​](#param-enough)

enough

bool

required

Whether the member’s remaining budget is sufficient (i.e., remaining balance is greater than zero).

```
curl --request POST \
--url https://api.novita.ai/openapi/v1/user/team/check-budget \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{"member_id": ""}'
```

200

```
{
"enough": true
}
```

Last modified on April 21, 2026
