logo
Customer

get

get
https://api.groundx.ai/api/v1/customer

Get the account information associated with the API key.

Execute an API Request

No request parameters.
Authorization
Request
Installation
$
npm install groundx-typescript-sdk
1
Loading...

Response fields

object
customerobject

Account information for the user

1
{
2
"customer": {
3
"email": "user@example.com",
4
"first": "string",
5
"last": "string",
6
"subscription": {
7
"meters": {
8
"fileTokens": {
9
"max": 0,
10
"meterId": "string",
11
"value": 0
12
},
13
"searches": {
14
"max": 0,
15
"meterId": "string",
16
"value": 0
17
}
18
}
19
}
20
}
21
}