GET
/
export
/
pdf
cURL
curl --request GET \
  --url https://healthcare.us.stedi.com/2024-04-01/export/pdf \
  --header 'Authorization: <api-key>'
{
  "pdfs": [
    {
      "transactionId": "a10b1111-7233-484c-8dee-b240c590c767",
      "data": "JVBERi0xLjcKJYGBgYEKCjcgMCBvYmoKPDwKL0ZpbHRlciAvRmxhdGVEZWNvZGUKL0xlbmd0aCAxMAo ..."
    }
  ],
  "errors": [
    {
      "transactionId": "a10b3344-7288-484j-8dbb-b240c123c767",
      "error": "No artifacts found for transaction"
    }
  ]
}
This endpoint uses a business identifier to retrieve autogenerated CMS-1500 Claim Form PDFs for submitted 837P professional claims.
  1. Call this endpoint with the businessId query parameter set to the claim’s correlation ID. The correlation ID is returned as the claimReference.correlationId in the synchronous response Stedi returns when you submit a professional claim.
  2. The endpoint returns an array of PDFs for all claims with the specified businessId value. PDFs are returned as a base64 encoded string.
To view a PDF, decode the base64 string and save it to a file with a .pdf extension.
If you plan to send these PDFs to payers or retain them for your records, we strongly recommend visiting CMS-1500 Claim Form PDF for information about how to structure claim submissions for optimal generation, the correct printer settings for generated PDFs, and general best practices.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Query Parameters

businessId
string
required

The business identifier for the claim PDF you want to retrieve. This value is returned as the claimReference.correlationId in the synchronous response Stedi returns when you submit a professional claim.

background
boolean

If false, the generated PDF will only contain the form data on a white background, suitable for printing on pre-printed forms. The default is true.

Response

200
application/json

ExportPDF 200 response

The response is of type object.