Skip to main content
GET
/
schema
/
datasets
/
all
List all datasets
curl --request GET \
  --url https://api.datalinks.com/api/v1/schema/datasets/all \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "namespace": "<string>",
    "owner": "<string>",
    "visibility": "Public",
    "nameWithNamespace": "<string>",
    "user": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Returns a list of datasets accessible to the user.

name
string
required

Name of the dataset.

namespace
string
required

Name of the namespace the dataset belongs to.

owner
string
required

The username associated with the data.

visibility
enum<string>
required

Indicates whether the data is public or private.

Available options:
Public,
Private
nameWithNamespace
string
deprecated

The name concatenated with the namespace.

user
string
deprecated

The username associated with the data.