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>",
    "nameWithNamespace": "<string>",
    "owner": "<string>",
    "user": "<string>",
    "visibility": "Public"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Successful response containing data with namespace details.

name
string
required

Dataset name

namespace
string
required

Namespace name

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.

I