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

# Get a company

> Read a single owned company.

Returns a single owned company in the same sanitized `{ success, data: { company } }` shape as [List companies](/api-reference/companies/list) returns for its `?id=` form. Sensitive columns (bank account details, owner bank link) are not included; shareholder objects are reduced to the public fields.

## Query

<ParamField query="companyId" type="string" required>
  Company ID. The company must be owned by the caller.
</ParamField>

## Response

<ResponseField name="success" type="boolean" />

<ResponseField name="data.company" type="object">
  The sanitized company record. Same shape as a single item of `data.companies` from `my-companies`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.vouchmark.com/v1/dashboard/company-details?companyId=cmp_aBcD..." \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "company": {
        "id": "cmp_aBcD...",
        "companyName": "TEKCIFY TECHNOLOGIES LTD",
        "rcNumber": "8511136",
        "ownerId": "usr_aBcD...",
        "active": true,
        "classification": { "id": 2, "label": "Private Company Limited by Shares" },
        "profile": {
          "natureOfBusiness": "Software",
          "businessCategory": "Technology",
          "businessDescription": "Software development",
          "businessCommencementDate": "2024-09-18",
          "registrationDate": "2024-09-18",
          "registrationApproved": true,
          "companyDetails": true,
          "logoUrl": "https://cdn.vouchmark.com/..."
        },
        "contact": {
          "email": "hello@tekcify.com",
          "address": "14 Marina Road",
          "city": "Lagos",
          "state": "Lagos",
          "lga": "Lagos Island"
        },
        "tax": { "firsTin": "2522576963525", "jtbtin": null, "firsttin_pending": false },
        "shares": { "shareCapital": 10000, "dividedInto": "10000", "shareHolderDetails": [] },
        "registrarInfo": null,
        "socials": {
          "website": "https://tekcify.com",
          "facebook": null,
          "instagram": null,
          "linkedin": null,
          "twitter": null,
          "tiktok": null
        },
        "vouchmark_tools": {
          "vouch_mark": 90,
          "activeBank": true,
          "social_verified": true,
          "cacert_verified": true,
          "cacreport_verified": true,
          "memartVerified": true,
          "firstaxClearance_vr": true
        },
        "documents": { "cacCertificateUrl": "https://cdn.vouchmark.com/..." },
        "stats": { "view_count": 0, "search_view_count": 0 }
      }
    }
  }
  ```
</ResponseExample>

<Note>
  If no owned company matches `companyId`, the endpoint returns `404` with `{ "message": "No companies found" }`.
</Note>
