> ## 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 Company By ID

> Retrieve a specific company profile by ID

## Endpoint

```
GET /api/v1/companies/:id
```

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

<Note>This endpoint is **public** and does not require authentication.</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the company (UUID).
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "id": "uuid",
    "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",
    "createdAt": "2025-01-15T10:00:00Z",
    "directJobs": [
      {
        "id": "uuid",
        "title": "Software Engineer",
        "location": "Cairo, Egypt",
        "jobType": "FULL_TIME",
        "workPreference": "HYBRID",
        "experienceLevel": "MID",
        "status": "PUBLISHED"
      }
    ]
  },
  "message": "Company profile retrieved successfully",
  "meta": {
    "timestamp": "2026-04-23T20:00:00.000Z",
    "path": "/companies/uuid",
    "method": "GET"
  }
}
```

## Error Responses

### 404 Not Found

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