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

Documentation Index

Fetch the complete documentation index at: https://docs.datalinks.com/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

user
string
required

Username or 'self' for the current user.

namespace
string
required

Namespace for the dataset.

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.