GET
/
api
/
v2
/
clearinghouse
/
payers
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
payers = client.v2.clearinghouse.payers.list()
print(payers.payers)
{
  "payers": [
    {
      "stediId": "<string>",
      "displayName": "<string>",
      "primaryPayerId": "<string>",
      "aliases": [
        "<string>"
      ],
      "names": [
        "<string>"
      ]
    }
  ]
}

Response

200
application/json

Successfully retrieved the list of payers.