Payer List
Oystehr offers a set of endpoints to enable searching for payers by name and ID and to provide permalinks for use as reference URLs for specific payers.
The information returned by Oystehr includes payer name, ID, and alternate or former names and IDs. For some payers, address is also returned.
If you think a payer is missing from our list, or if address information is missing, please contact support.
Search
Payers can be searched by name or code (opens in a new tab). This endpoint is paginated using cursor-based pagination.
import Oystehr from '@oystehr/sdk';
const oystehr = new Oystehr({
accessToken: "<your_access_token>",
});
const payers = await oystehr.rcm.listPayers({
name: "United",
})Get Payer Information
Information about specific payers can be retrieved (opens in a new tab) using the payer's ID.
import Oystehr from '@oystehr/sdk';
const oystehr = new Oystehr({
accessToken: "<your_access_token>",
});
const payers = await oystehr.rcm.getPayer({
id: "NYU01",
})