<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/GET-orgs-_id_",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:get:orgs-{}"
  },
  "title" : "Get Org by ID"
}
-->

# Get Org by ID

Retrieve the details of a specific organization by its ID.

## Discussion

This endpoint retrieves the details of a specific organization by its ID. To retrieve your organization ID, call [`Get Me Details`](/documentation/Apple-Ads-Platform-API/Get-current-user-details), which returns the `orgId` bound to the authenticated user.

## Payload Examples

**Get Organization by ID:**

### Request

```
GET https://api.ads.apple.com/v1/orgs/987654321
```

### Response

```json
{
 "result": {
   "id": 987654321,
   "name": "AwayFinder",
   "currency": "USD",
   "timezone": "America/New_York",
   "paymentModel": "PAYG",
   "systemStatus": "ACTIVE",
   "systemStatusReasons": []
 }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)