List datasets metadata

Returns metadata for all available datasets. The metadata includes the date it was last updated in our system in addition to the JSON schema used for the records.

Request
query Parameters
tags
Array of strings

If set, the result will contain items with matching associated tags. Currently supported tags are: "Sanctions and Exclusions", "Board Certifications", "NPI", "Id Check", "NPDB"

entityTypes
Array of strings

If set, the result will contain items that support the specified healthcare entity types.

Items Enum: "Practitioner" "Facility"
sortedBy
string

The property by which the returned data will be sorted.

Enum: "Name" "Type"
object

If set, the properties and directions the returned data will be sorted by.

offset
integer <int32>
Deprecated

The offset for the page to start.

cursor
string

The cursor to render the page requested. To load the first page send an empty cursor, then the system will generate the cursors to go to the next and/or previous pages automatically.

count
integer <int32>

The number of items to include in a single page.

sortDirection
string

The direction the returned data will be sorted by.

Enum: "Asc" "Desc"
Responses
200

Success

401

Unauthorized

403

Forbidden

500

Server Error

get/datasets
Response samples
application/json
{
  • "previousCursor": "string",
  • "nextCursor": "string",
  • "nextOffset": 0,
  • "pageSize": 0,
  • "count": 0,
  • "totalCount": 0,
  • "items": [
    ],
  • "sortedBy": "Name",
  • "sortDirection": "Asc",
  • "sort": {
    }
}