A TypeScript package for communicating with Apple App Store Connect API
- Automatically generated API client using the latest OpenAPI specification from Apple.
- Fully typed models and methods for every endpoint.
- Designed for use in a Node.js server environment.
npm install @rage-against-the-pixel/app-store-connect-apiTo authenticate with the API you will need to create a API keys for App Store Connect API.
Download and save the private key .p8 file to a save, secure location.
The contents of this file is your privateKey.
The privateKeyId and issuerId are both listed on the same page where you create your private key.
Note
Individual keys do not require issuerId.
import { AppStoreConnectClient, AppStoreConnectOptions } from '@rage-against-the-pixel/app-store-connect-api';
async function main() {
const options: AppStoreConnectOptions = {
issuerId: '<ISSUER_ID>',
privateKeyId: '<PRIVATE_KEY_ID>',
privateKey: '<PRIVATE_KEY>',
};
const client = new AppStoreConnectClient(options);
const { data: response, error } = await client.api.Apps.appsGetCollection({
query: {
limit: 10
}
});
if (error) {
console.error('Error fetching apps:', error);
} else {
const apps = response.data.map(app => ({
id: app.id,
name: app.attributes.name,
bundleId: app.attributes.bundleId
}));
console.log('Apps:', apps);
}
}
main();