You can send 837D dental claims to payers through the Stedi API or SFTP connection.

Once you send a claim, Stedi automatically receives and processes 277CA claim acknowledgment and 835 Electronic Remittance Advice (ERA) responses.

Before sending claims

You may need to complete the following steps before sending claims.

Transaction enrollment

All payers require providers to complete an enrollment process before they can start receiving 835 ERAs. Some payers also require enrollment before allowing providers to submit claims.

The Stedi Payer Network lists which payers require transaction enrollment. Visit Transaction Enrollment for details about the transaction enrollment process.

We recommend running a coordination of benefits (COB) check to ensure you submit claims to the correct payer. COB checks can help you determine:

  • If a patient is covered by more than one health plan
  • Whether coverage overlap requires coordination of benefits
  • Each payer’s responsibility for payment (primacy) in coordination of benefits scenarios

Visit Coordination of benefits (COB) checks for more information.

SFTP submission

You can use Stedi’s fully-managed SFTP server to submit claims to to payers and retrieve claim responses without calling Stedi’s APIs.

You must submit claims in X12 EDI format, and Stedi returns claim responses through the SFTP connection in X12 EDI format. This makes Stedi SFTP a good option if you have an existing system that generates X12 EDI files and you want to send them through the Stedi clearinghouse without completing an API integration. Visit SFTP connection for more information.

API submission

Call one of the following endpoints to submit 837D dental claims:

The endpoint returns a synchronous response from Stedi in JSON format. Later, the payer will respond with a 277CA claim acknowledgment.

Headers

When constructing the request, you must include the following information in HTTP headers:

  • Authorization: Generate an API key to use for authentication.
  • Content-Type: Set to application/json.

Body

The information you submit for a claim depends on your use case. Refer to the Dental Claims endpoint for a complete list of properties. However, all claims require the following high-level information:

InformationDescription
tradingPartnerServiceIdThis is the payer ID. Visit the Payer Network for a complete list.
tradingPartnerNameThis is the payer’s business name, like Cigna or Aetna.
submitter objectInformation about the entity submitting the claim. This can be either an individual or an organization, such as a doctor, hospital, or insurance company.
receiver objectInformation about the payer, such as an insurance company or government agency.
subscriber and/or dependent objectsInformation about the patient who received the medical services. Note that if a dependent has their own, unique member ID for their health plan, you should submit their information in the subscriber object and omit the dependent object from the request. You can check whether the dependent has a unique member ID by submitting an Eligibility Check to the payer for the dependent. The payer will return the member ID in the dependents.memberId field, if present.
claimInformation objectInformation about the claim, such as the patient control number, claim charge amount, and place of service code. It also includes information about each individual service line included in the claim.
billing objectInformation about the billing provider, such as the NPI, taxonomy code, and organization name.

Identify service lines

A claim can contain multiple service lines. Since the payer may accept, reject, or pay a subset of those lines, you can receive an 835 ERA that references a patientControlNumber, but only pertains to some of the service lines.

However, the claimInformation.serviceLines.providerControlNumber serves as a unique identifier for each service line in your claim submission. This value appears in the 277CA claim acknowledgment and 835 ERA as the lineItemControlNumber, allowing you to correlate these responses to specific service lines from the original claim. If you don’t set the providerControlNumber for a service line, Stedi uses a random UUID.

Stedi returns service line identifiers in the claimReference.serviceLines object of the synchronous API response.

275 claim attachments

If the claim requires attachments, you must include additional details about the attachments in the claimInformation.claimSupplementalInformation.reportInformation object.

Visit Claim attachments for complete instructions.

Character restrictions

Only use the X12 Basic and Extended character sets in request data. Using characters outside these sets may cause validation and HTTP 400 errors.

In addition, the following characters are reserved for delimiters in the final X12 EDI transaction to the payer: ~, *, :, and ^. X12 doesn’t support using escape sequences to represent delimiters or special characters. Stedi returns a 400 error if you use these restricted characters improperly.

  • JSON endpoint: Don’t include delimiter characters anywhere in your request data.
  • Raw X12 endpoint: You can use these characters as delimiters, but not in the body of the request data.

Sample request

The following example sends a dental claim.

curl --request POST \
  --url https://healthcare.us.stedi.com/2024-04-01/dental-claims/submission \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "usageIndicator": "T",
  "tradingPartnerServiceId": "52133",
  "tradingPartnerName": "United HealthCare Dental",
  "subscriber": {
    "paymentResponsibilityLevelCode": "P",
    "memberId": "123412345",
    "firstName": "John",
    "lastName": "Doe",
    "groupNumber": "1234567890",
    "gender": "F",
    "address": {
      "address1": "1234 Some St",
      "city": "Buckeye",
      "state": "AZ",
      "postalCode": "85326"
    },
    "dateOfBirth": "20180615"
  },
  "submitter": {
    "organizationName": "ABA Inc",
    "submitterIdentification": "<YOUR-SUBMITTER-ID>",
    "contactInformation": {
      "phoneNumber": "3131234567",
      "name": "BILLING DEPARTMENT"
    }
  },
  "rendering": {
    "npi": "1999999992",
    "taxonomyCode": "106S00000X",
    "providerType": "RenderingProvider",
    "lastName": "Doe",
    "firstName": "Jane"
  },
  "receiver": {
    "organizationName": "United HealthCare Dental"
  },
  "payerAddress": {
    "address1": "PO Box 7000",
    "city": "Camden",
    "state": "SC",
    "postalCode": "29000"
  },
  "claimInformation": {
    "signatureIndicator": "Y",
    "toothStatus": [
      {
        "toothNumber": "3",
        "toothStatusCode": "E"
      }
    ],
    "serviceLines": [
      {
        "serviceDate": "20230428",
        "renderingProvider": {
          "npi": "1999999992",
          "taxonomyCode": "122300000X",
          "lastName": "Doe",
          "firstName": "Jane"
        },
        "providerControlNumber": "a0UDo000000dd2dMAA",
        "dentalService": {
          "procedureCode": "D7140",
          "lineItemChargeAmount": "832.00",
          "placeOfServiceCode": "12",
          "oralCavityDesignationCode": [
            "1",
            "2"
          ],
          "prosthesisCrownOrInlayCode": "I",
          "procedureCount": 2,
          "compositeDiagnosisCodePointers": {
            "diagnosisCodePointers": [
              "1"
            ]
          }
        },
        "teethInformation": [
          {
            "toothCode": "3",
            "toothSurface": [
              "M",
              "O"
            ]
          }
        ]
      }
    ],
    "serviceFacilityLocation": {
      "phoneNumber": "3131234567",
      "organizationName": "ABA Inc",
      "npi": "1999999992",
      "address": {
        "address1": "ABA Inc 123 Some St",
        "city": "Denver",
        "state": "CO",
        "postalCode": "802383100"
      }
    },
    "releaseInformationCode": "Y",
    "planParticipationCode": "A",
    "placeOfServiceCode": "12",
    "patientControlNumber": "<YOUR-PATIENT-ID>",
    "healthCareCodeInformation": [
      {
        "diagnosisTypeCode": "ABK",
        "diagnosisCode": "K081"
      }
    ],
    "claimSupplementalInformation": {
      "priorAuthorizationNumber": "20231010012345678"
    },
    "claimFrequencyCode": "1",
    "claimFilingCode": "FI",
    "claimChargeAmount": "832.00",
    "benefitsAssignmentCertificationIndicator": "Y"
  },
  "billing": {
    "taxonomyCode": "106S00000X",
    "providerType": "BillingProvider",
    "organizationName": "ABA Inc",
    "npi": "1999999992",
    "employerId": "123456789",
    "contactInformation": {
      "phoneNumber": "3134893157",
      "name": "ABA Inc"
    },
    "address": {
      "address1": "ABA Inc 123 Some St",
      "city": "Denver",
      "state": "CO",
      "postalCode": "802383000"
    }
  }
}'

Test claims

All claims you submit through this endpoint are sent to the payer as production claims unless you explicitly designate them as test data.

To send test claims, set the usageIndicator property in the test claim body to T. This allows you to filter for test claims on the Transactions page in the Stedi portal.

Note that you will receive a 277CA claim acknowledgment in response to test claims, allowing you to test your workflow end to end, but you will not receive a test 835 ERA response.

You may want to use an API client to make testing and debugging easier.

We don’t recommend using Postman for requests containing Protected Health Information (PHI) because Postman defaults to storing request history - including full request payloads - on its cloud servers. You can’t turn this feature off without impractical workarounds.

Visit API clients for a list of recommended clients you can use instead.

Cancel or resubmit claims

You may need to resubmit claims for several reasons, including changes to the patient’s coverage, errors in the original claim’s information, or appealing a denied claim. You may also need to cancel duplicate claims or claims that were submitted in error.

We recommend the following for resubmitting or canceling claims:

  • Correct or replace claims: Set claimInformation.claimFrequencyCode to 7 - Replacement of Prior Claim. We also recommend setting a new, unique patientControlNumber. The payer includes this value in their 835 ERA, allowing you to easily correlate that response with your resubmission.
  • Cancel claims : Set claimInformation.claimFrequencyCode to 8 - Void/Cancel of Prior Claim.

Choosing the correct claim filing indicator code is important for successful claim submission. Visit the Claims code lists documentation for best practices for selecting the appropriate code.

In both cases, identify the original claim by setting claimInformation.claimSupplementalInformation.claimControlNumber to the Payer Claim Control Number (sometimes called the ICN). This is different from the patientControlNumber you sent in the claim and the Stedi-generated controlNumber returned in the API response. You can retrieve the Payer Claim Control Number from one of the payer’s 277CA claim acknowledgments in the transactions.payers.claimStatusTransactions.claimStatusDetails.patientClaimStatusDetails.claims.claimStatus.tradingPartnerClaimNumber property.

Submit claims to a secondary or tertiary payer

In coordination of benefits (COB) scenarios, you’ll need to submit a claim to multiple payers.

You must set the subscriber.paymentResponsibilityLevelCode to either S (when submitting to the secondary payer) or T (when submitting to the tertiary payer).

You must also include the following information about how prior payers have adjudicated the claim. For example, if a patient’s private insurance plan (primary payer) adjusted the requested reimbursement amount and paid for its portion of the services, you must include that information in the claim you submit to Medicare (secondary payer). You can find these details in 835 ERA responses from prior payers.

Claim information

You must submit one claimInformation.otherSubscriberInformation object for each prior payer. Supply all the required properties in the object plus the following additional information:

  • claimLevelAdjustments: Provide if the prior payer made adjustments at the claim level. Codes and their associated amounts must come from ERAs sent by the prior payers. You can find these codes in the ERA’s transactions.detailInfo.paymentInfo.claimAdjustments object.
  • medicareInpatientAdjudication (institutional claims only): You must include this if Medicare was one of the prior payers and reported inpatient adjudication information on the ERA.
  • medicareOutpatientAdjudication: You must include this if Medicare was one of the prior payers and reported outpatient adjudication information on the ERA.
  • otherPayerName.otherPayerAdjudicationOrPaymentDate: The date the payer adjudicated or paid the claim. You must provide this if you aren’t providing a value in the claimInformation.serviceLines.lineAdjudicationInformation.adjudicationOrPaymentDate property.
  • payerPaidAmount: This is the total amount in dollars the payer paid on this claim.

Service line information

You must submit serviceLines.lineAdjudicationInformation objects when the prior payers provided line-level adjudication information. Submit one object for each prior payer. For each object, you should include the following properties.

  • adjudicationOrPaymentDate: The date the payer adjudicated or paid the claim. Don’t include this if you’re providing a date in the otherPayerName.otherPayerAdjudicationOrPaymentDate property.
  • claimAdjustmentInformation: You can find this information in the ERA’s transactions.detailInfo.paymentInfo.serviceLines.serviceAdjustments object.
  • otherPayerPrimaryIdentifier: The identifier for the other payer. This value should match the identifier you supplied for the payer in the claimInformation.otherSubscriberInformation.otherPayerName.otherPayerIdentifier property.
  • procedureCode: The adjudicated procedure code for the service line.
  • serviceIdQualifier: A code identify the type of procedure code. Visit Claims code lists for a complete list.
  • serviceLinePaidAmount: The total amount in dollars the prior payer paid on this service line.
  • paidServiceUnitCount: The number of paid units for the service line. When paid units are not present on the remittance advice, use the original billed units.
  • remainingPatientLiability: The amount of the service line the patient is responsible for paying.

View submitted claims

You can view the files that Stedi sends and receives in the Files page of the Stedi portal.

On the Transactions page, you can review and filter claims by Usage - production or test. Click any claim submission to review its details, including the full request and response payload and processing events.