Skip to main content
GET
/
projects
/
{project_name}
/
tables
/
{table_id}
/
data
GET /projects/{project_name}/tables/{table_id}/data
curl --request GET \
  --url https://api.cloudsquid.io/api/projects/{project_name}/tables/{table_id}/data \
  --header 'X-API-Key: <api-key>'
[
  {
    "data": {},
    "created_at": "2023-11-07T05:31:56Z",
    "row_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "reasoning": "<string>",
    "review": {
      "comment": "<string>",
      "reviewed_by": "<string>",
      "review_date": "2023-11-07T05:31:56Z",
      "approved": true
    },
    "input": {
      "data": {},
      "files": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ]
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cloudsquid.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

project_name
string
required

The name of the project

table_id
string<uuid>
required

The id of the table

Query Parameters

data_id
string<uuid>

Optional filter for a specific data id

Response

Successfully retrieved data

data
object
required

Object with direct values for each key, allowing single values or arrays of values.

created_at
string<date-time>
required
row_id
string<uuid>
required
reasoning
string
review
object
status
enum<string>

status of the AI run

Available options:
running,
done,
error,
pending
input
object