> ## Documentation Index
> Fetch the complete documentation index at: https://careerk.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get My Company Profile

> Retrieve the authenticated company profile

## Endpoint

```
GET /api/v1/companies/me
```

**Base URL**: `http://localhost:3000/api/v1`

<Note>This endpoint requires **Company authentication**.</Note>

## Headers

| Header        | Value                 |
| ------------- | --------------------- |
| Authorization | Bearer {access_token} |

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "id": "uuid",
    "email": "company@example.com",
    "name": "Tech Corp",
    "description": "A leading technology company",
    "logoUrl": "https://...",
    "industry": "Technology",
    "size": "SIZE_201_1000",
    "type": "ENTERPRISE",
    "headquartersLocation": "Cairo, Egypt",
    "foundedYear": 2015,
    "websiteUrl": "https://techcorp.com",
    "benefits": "Health insurance, remote work",
    "linkedIn": "https://linkedin.com/company/techcorp",
    "facebook": "https://facebook.com/techcorp",
    "twitter": "https://twitter.com/techcorp"
  },
  "message": "Company profile retrieved successfully",
  "meta": {
    "timestamp": "2026-04-23T20:00:00.000Z",
    "path": "/companies/me",
    "method": "GET"
  }
}
```

## Error Responses

### 401 Unauthorized

```json theme={null}
{
  "success": false,
  "error": {
    "message": "Unauthorized",
    "statusCode": 401,
    "timestamp": "2026-04-23T20:00:00.000Z",
    "path": "/companies/me",
    "method": "GET",
    "details": "Unauthorized"
  }
}
```

### 403 Forbidden

```json theme={null}
{
  "success": false,
  "error": {
    "message": "Forbidden resource",
    "statusCode": 403,
    "timestamp": "2026-04-23T20:00:00.000Z",
    "path": "/companies/me",
    "method": "GET",
    "details": "Forbidden"
  }
}
```

### 404 Not Found

```json theme={null}
{
  "success": false,
  "error": {
    "message": "Company not found",
    "statusCode": 404,
    "timestamp": "2026-04-23T20:00:00.000Z",
    "path": "/companies/me",
    "method": "GET",
    "details": "Not Found"
  }
}
```
