Skip to main content
GET
/
ontology
/
{username}
/
{namespace}
/
{datasetName}
cURL
curl --request GET \
  --url https://api.datalinks.com/api/v1/ontology/{username}/{namespace}/{datasetName} \
  --header 'Authorization: Bearer <token>'
[
  {
    "destination": "ri.user.examples.actor.name",
    "hits": 6,
    "matchType": "ExactMatch",
    "origin": "ri.user.examples.movies.director"
  }
]

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

Success

destination
string
required
Example:

"ri.user.examples.companies.other_addresses"

hits
integer
required
Example:

5

matchType
string
required
Example:

"ExactMatch"

origin
string
required
Example:

"ri.user.examples.companies.nationalities"

I