apple_get_pricing
Retrieve current pricing information for apps on the App Store using their App ID to manage pricing strategies.
Instructions
Get current app pricing
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID |
Implementation Reference
- src/apple/tools.ts:564-568 (handler)The handler implementation for apple_get_pricing which fetches app pricing information.
handler: async (client, args) => { return client.request(`/apps/${args.appId}/appPriceSchedule`, { params: { include: 'manualPrices,automaticPrices' }, }); }, - src/apple/tools.ts:561-563 (schema)The input schema for apple_get_pricing.
schema: z.object({ appId: z.string().describe('App ID'), }), - src/apple/tools.ts:559-560 (registration)The registration of the tool apple_get_pricing.
name: 'apple_get_pricing', description: 'Get current app pricing',