Seller KYC
Get my KYC
GET
/api/v1/seller/kyc/my-kycReturns the signed-in seller's own KYC record and its current status.
Requires Authorization
SELLER only
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/seller/kyc/my-kyc \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"id": "kyc_8f1e2a",
"sellerProfileId": "sp_2b3c4d",
"idDocumentType": "NATIONAL_ID",
"idDocumentUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/id-aline.jpg",
"proofOfAddressUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/address-aline.jpg",
"selfieUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/selfie-aline.jpg",
"rccmNumber": null,
"rccmDocumentUrl": null,
"status": "PENDING",
"createdAt": "2026-01-06T09:00:00.000Z"
}
}