Skip to main content
GET
/
api
/
v1
/
data
/
{uuid}
/
records
Get records for imported data
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/data/{uuid}/records \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Records retrieved successfully",
  "data": {
    "current_page": 123,
    "data": [
      {
        "record_id": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "values": [
          {
            "column_id": 123,
            "column_name": "<string>",
            "data_type": "<string>",
            "value": "<string>"
          }
        ]
      }
    ],
    "per_page": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the data

Query Parameters

page
integer
default:1

Page number

per_page
integer
default:100

Items per page (max 1000)

Response

Records retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Records retrieved successfully"

data
object