Get An NPI List

This endpoint allows clients to retrieve a list of all NPI's that are in a single NPI list.

Endpoint

**Method: **GET

/v2/npi/npi-list/{id}

Path Parameter: Where id is the ID of the NPI List. If you don't know what the ID is, you can pull all of your List IDs by Account here.

Response

{
  "id": 4210,
  "npis": [
    "1234567891",
    "1234567892",
    "1234567893",
    "1234567894",
    "1234567895",
    "123 4567896",
    "1234567897"
  ],
  "name": "NPI_4210",
  "advertisers": ["Demo"],
  "isSmartList": false
}

We also offer Lite version of the above endpoint that allows the user to pull infomation about the list, minus the NPI array.

Lite Endpoint

/v2/npi/npi-list/{id}/lite

Where id is the ID of the NPI List. If you don't know what the ID is, you can pull all of your List IDs by Account here.

Response

{
  "id": 4210,
  "name": "NPI_4210",
  "advertisers": ["Demo"],
  "isSmartList": false
}