logo
Projects

list

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

list all projects within your GroundX account.

Interact with the "Request Body" below to explore the arguments of this function. Enter your GroundX API key to send a request directly from this web page. Select your language of choice to structure a code snippet based on your specified arguments.

Execute an API Request

Query
ninteger

The maximum number of returned documents. Accepts 1-100 with a default of 20.

nextTokenstring

A token for pagination. If the number of documents for a given query is larger than n, the response will include a "nextToken" value. That token can be included in this field to retrieve the next batch of n documents.

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

Response fields

object
projectsarray of objects
1
{
2
"projects": [
3
{
4
"buckets": [
5
{
6
"bucketId": 0,
7
"created": "2023-10-03T08:59:39.312Z",
8
"fileCount": 0,
9
"fileSize": "3.1GB",
10
"name": "string",
11
"updated": "2023-10-03T08:59:39.312Z"
12
}
13
],
14
"created": "2023-10-03T08:59:39.312Z",
15
"fileCount": 0,
16
"fileSize": "3.1GB",
17
"projectId": 0,
18
"name": "string",
19
"updated": "2023-10-03T08:59:39.312Z"
20
}
21
]
22
}