GET
/
data
/
{username}
/
{namespace}
/
{datasetName}
Get dataset information
curl --request GET \
  --url https://api.datalinks.com/api/v1/data/{username}/{namespace}/{datasetName} \
  --header 'Authorization: Bearer <token>'
{
  "dataset": {
    "name": "<string>",
    "namespace": "<string>",
    "nameWithNamespace": "<string>",
    "owner": "<string>",
    "user": "<string>",
    "visibility": "Public"
  },
  "inferDefinition": {
    "dataDescription": "<string>",
    "fieldDefinition": "<string>"
  },
  "metadata": {
    "rowCount": 123
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token for authentication. Submit the token using the Authorization header: Authorization: Bearer <token>.

Path Parameters

namespace
string
required

Namespace for the dataset.

datasetName
string
required

Name of the dataset.

username
string
required

The username associated with the request.

Response

200
application/json

Successful return dataset information

The response is of type object.