GET
/
payer
/
{stediId}
cURL
curl --request GET \
  --url https://healthcare.us.stedi.com/2024-04-01/payer/{stediId} \
  --header 'Authorization: <api-key>'
{
  "payer": {
    "stediId": "KRPCH",
    "displayName": "Blue Cross Blue Shield of Michigan",
    "primaryPayerId": "00710",
    "aliases": [
      "00210I",
      "00710",
      "00710D",
      "00710P",
      "1421",
      "2287",
      "2426",
      "710",
      "CBMI1",
      "MIBCSI",
      "MIBCSP",
      "SB710",
      "Z1380"
    ],
    "names": [
      "Blue Cross Blue Shield Michigan Dental",
      "Blue Cross Blue Shield Michigan Institutional",
      "Blue Cross Blue Shield Michigan Professional"
    ],
    "transactionSupport": {
      "eligibilityCheck": "SUPPORTED",
      "claimStatus": "SUPPORTED",
      "claimSubmission": "SUPPORTED",
      "professionalClaimSubmission": "SUPPORTED",
      "institutionalClaimSubmission": "SUPPORTED",
      "claimPayment": "ENROLLMENT_REQUIRED",
      "coordinationOfBenefits": "SUPPORTED",
      "dentalClaimSubmission": "NOT_SUPPORTED",
      "unsolicitedClaimAttachment": "NOT_SUPPORTED"
    },
    "enrollment": {
      "ptanRequired": false,
      "transactionEnrollmentProcesses": {
        "claimPayment": {
          "type": "ONE_CLICK"
        }
      }
    },
    "parentPayerGroupId": "AWOCR",
    "coverageTypes": [
      "medical"
    ]
  }
}

You can use this endpoint to retrieve a specific payer record with the Stedi payer ID (stediId). You can find the Stedi payer ID for any supported payer in the Payer Network. Note that you must supply the Stedi payer ID - this endpoint doesn’t support querying with the primary payer ID or payer ID aliases.

The payer record includes the payer’s names, aliases, and supported use cases (medical or dental). It also contains supported transaction types and specifies whether transaction enrollment is required.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Path Parameters

stediId
string
required

The Stedi payer ID, a unique identifier Stedi assigns to each payer that will never change. You can find the Stedi payer ID for any supported payer in the Payer Network.

This must be the Stedi payer ID - querying with the primary payer ID or payer ID aliases isn't supported.

Response

200
application/json

GetPayerRecord 200 response

The response is of type object.