# Your organization
Retrieve the organization associated with your API key. Useful for verifying your credentials and checking your org profile.

GET /organization

## Authorization
read:series

## Request Examples

### curl
```curl
curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/organization
```

### JavaScript
```javascript
const res = await fetch(
  "https://api.intervals.run/organization",
  {
  headers: { Authorization: "Bearer INTERVALS_PARTNER_API_KEY" },
  }
);
const { data } = await res.json();
```

## Responses

### 200 (200)
```json
{
  "data": {
    "_id": "k57abc123def456",
    "name": "North Shore Race Management",
    "slug": "north-shore-race-mgmt",
    "roles": [
      "organizer"
    ],
    "plan": "local"
  }
}
```