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

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

Query Parameters

query
string
required

The search query (e.g. name, ID, etc.) for the payer.

Response

200
application/json

Successfully retrieved the list of payers.