Skip to main content
POST
/
talk2data
/
v1
/
sample
Sample Data Endpoint
curl --request POST \
  --url https://api.example.com/talk2data/v1/sample \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resource_uri": "<string>",
  "table_fqn": "<string>",
  "limit": 10
}
'
{
  "columns": [
    "<string>"
  ],
  "rows": [
    [
      "<unknown>"
    ]
  ],
  "row_count": 123,
  "truncated": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for table sample data.

resource_uri
string
required

Resource URI of the data connection (e.g. data:org:project:name)

Required string length: 1 - 512
table_fqn
string
required

Fully qualified table name: database.schema.table

Required string length: 1 - 512
limit
integer
default:10

Maximum rows to return

Required range: 1 <= x <= 100

Response

Successful Response

Table sample data result.

columns
string[]
required
rows
any[][]
required
row_count
integer
required
truncated
boolean
required