# Apple App Store Developer

Apple developer endpoint: developer profile plus the full apps catalog for the given artist id.

- **Documentation:** [https://scrappa.co/docs/apple-app-store-api/apple_app_store_developer](https://scrappa.co/docs/apple-app-store-api/apple_app_store_developer)
- **API group:** Apple App Store API
- **Endpoint:** `GET https://scrappa.co/api/apple/app-store/developer`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `artist_id` | string | Yes | Apple artist/developer id (e.g. 284882218). |
| `country` | string | No | Two-letter Apple storefront country code. Defaults to us. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/apple/app-store/developer?artist_id=284882218&country=us"
```

## Example response

```json
{
    "search_parameters": {
        "engine": "apple_app_store_developer",
        "artist_id": "284882218",
        "country": "us"
    },
    "developer": {
        "id": "284882218",
        "name": "Meta Platforms, Inc.",
        "url": "https://apps.apple.com/us/developer/meta-platforms-inc/id284882218"
    },
    "apps": [
        {
            "id": "284882215",
            "title": "Facebook",
            "url": "https://apps.apple.com/us/app/facebook/id284882215"
        }
    ]
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error | The product_id or another parameter failed validation. |
| 404 | Apple Product Not Found | The product is legitimately absent in the requested storefront. |
| 503 | Apple Upstream Unavailable | Apple could not be fetched through the configured proxy tiers after the full attempt budget. |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
