Skip to main content
GET
/
v1
/
dashboard
/
my-companies
curl https://api.vouchmark.com/v1/dashboard/my-companies \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "company": {
      "id": "cmp_aBcD...",
      "companyName": "TEKCIFY TECHNOLOGIES LTD",
      "rcNumber": "8511136",
      "tax": {
        "firsTin": "2522576963525",
        "firsttin_pending": false
      },
      "vouchmark_tools": {
        "vouch_mark": 90,
        "firstaxClearance_vr": true,
        "firsttin_pending": false,
        "cacert_verified": true,
        "activeBank": true,
        "shareHolderVerified": true
      }
    }
  }
}

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.

Returns every company claimed by the caller, with the same shape used by the dashboard. Pass id to fetch a single company.

Query

id
string
Company ID. When set, the response contains a single company object instead of companies.

Response (collection)

success
boolean
data.companies
array
Array of company records.

Response (single)

data.company
object
See the shape below.
data.company.vouchmark_tools
object
Flags summarising verification state: firstaxClearance_vr, firsttin_pending, cacert_verified, activeBank, shareHolderVerified, plus the live vouch_mark score.
curl https://api.vouchmark.com/v1/dashboard/my-companies \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "company": {
      "id": "cmp_aBcD...",
      "companyName": "TEKCIFY TECHNOLOGIES LTD",
      "rcNumber": "8511136",
      "tax": {
        "firsTin": "2522576963525",
        "firsttin_pending": false
      },
      "vouchmark_tools": {
        "vouch_mark": 90,
        "firstaxClearance_vr": true,
        "firsttin_pending": false,
        "cacert_verified": true,
        "activeBank": true,
        "shareHolderVerified": true
      }
    }
  }
}