Skip to main content
GET
/
data
/
{namespace}
Fetch datasets in namespace
curl --request GET \
  --url https://api.datalinks.com/api/v1/data/{namespace} \
  --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>.

Path Parameters

namespace
string
required

Namespace for the dataset.

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