Skip to main content
GET
/
api
/
v1
/
data
/
{uuid}
/
fields
Get fields (columns) for imported data
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/data/{uuid}/fields \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Fields retrieved successfully",
  "data": {
    "data_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "fields": [
      {
        "name": "<string>",
        "data_type": "<string>"
      }
    ]
  }
}

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

Response

Fields retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Fields retrieved successfully"

data
object