curl "https://api.vouchmark.com/v1/dashboard/company-details?companyId=cmp_aBcD..." \
-H "Authorization: Bearer $TOKEN"
{
"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 }
}
}
}
Companies
Get a company
Read a single owned company.
GET
/
v1
/
dashboard
/
company-details?companyId=
{companyId}
curl "https://api.vouchmark.com/v1/dashboard/company-details?companyId=cmp_aBcD..." \
-H "Authorization: Bearer $TOKEN"
{
"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 }
}
}
}
Returns a single owned company in the same sanitized
{ success, data: { company } } shape as List companies 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
string
required
Company ID. The company must be owned by the caller.
Response
boolean
object
The sanitized company record. Same shape as a single item of
data.companies from my-companies.curl "https://api.vouchmark.com/v1/dashboard/company-details?companyId=cmp_aBcD..." \
-H "Authorization: Bearer $TOKEN"
{
"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 }
}
}
}
If no owned company matches
companyId, the endpoint returns 404 with { "message": "No companies found" }.⌘I
