GET
/
providers
/
{providerId}
curl --request GET \
  --url https://enrollments.us.stedi.com/2024-09-01/providers/{providerId} \
  --header 'Authorization: <api-key>'
{
  "createdAt": "2024-11-18T17:39:52.406Z",
  "id": "10334e76-f073-4b5d-8984-81d8e5107857",
  "name": "BDQ Dental Inc",
  "npi": "1999999992",
  "taxId": "555123456",
  "taxIdType": "EIN",
  "updatedAt": "2024-11-18T17:39:52.406Z",
  "contacts": [
    {
      "organizationName": "",
      "firstName": "Bob",
      "lastName": "Dentist",
      "email": "bob@fortdental.center",
      "phone": "555-123-213342",
      "streetAddress1": "123 Some Str",
      "city": "Chevy Chase",
      "zipCode": "20814",
      "state": "MD"
    },
    {
      "organizationName": "",
      "firstName": "Tom",
      "lastName": "Dentist",
      "email": "tom@fortdental.center",
      "phone": "555-123-213342",
      "streetAddress1": "123 Some Str",
      "city": "Chevy Chase",
      "zipCode": "20814",
      "state": "MD"
    }
  ]
}
This is a beta endpoint. We may make backwards incompatible changes.

This endpoint allows you to retrieve details for the specified provider.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Path Parameters

providerId
string
required

The unique ID Stedi assigned to the provider when it was created in the system.

Response

200
application/json
GetProvider 200 response
id
string
required

A unique identifier Stedi assigns to this provider.

npi
string
required

The provider's National Provider Identifier (NPI). This is a 10-digit number that is unique to the provider. Note that each provider record must have a unique NPI within Stedi - you cannot create a provider with an NPI that is already in use.

taxIdType
enum<string>
required

The type of tax ID. Can be either an EIN - Employer Identification Number, or an SSN - Social Security Number.

Available options:
EIN,
SSN
taxId
string
required

The provider's tax ID, as specified by taxIdType. This identifier has to be provided without any separators, such as dashes or spaces. For example 111-22-3333 is invalid but 111223333 is valid.

Minimum length: 8
name
string
required

The provider's business name. This is typically the provider's practice name, such as Dental Associates, LLC, but it can also be the provider's first and last name.

Minimum length: 5
createdAt
string

The date and time Stedi created the provider record.

updatedAt
string

The date and time Stedi last updated the provider record.

contacts
object[]

Either organizationName or firstName and lastName are required.

Was this page helpful?