Skip to content

Function: getPaymentsByTeachingHospital() ​

ts
function getPaymentsByTeachingHospital(opts?: {
  limit?: number;
  offset?: number;
}): Promise<PaymentQueryResult>;

Defined in: open-payments/sdk.ts:353

Get payments grouped by teaching hospital. Shows total payments to teaching hospitals from pharma companies.

Example: const data = await getPaymentsByTeachingHospital({ limit: 20 });

Parameters ​

ParameterType
opts?{ limit?: number; offset?: number; }
opts.limit?number
opts.offset?number

Returns ​

Promise<PaymentQueryResult>

Released under the MIT License.