Use this endpoint to upload a file
https://v2.api.mycover.ai/v2/utilities/files/upload
| Name | Type | Description |
|---|---|---|
| file | [form-data] file | File to upload |
{
"responseCode": 1,
"responseText": "File upload successful",
"data": {
"upload_id": "03a6d0d5-7a7a-4cbe-a26d-89f53558492a" // UUID of the uploaded file
}
}
Use this endpoint to get genders
https://v2.api.mycover.ai/v2/utilities/genders
{
"responseCode": 1,
"responseText": "Genders retrieved",
"data": {
"genders": [
"Male",
"Female"
]
}
}
Use this endpoint to get states and LGAs in Nigeria
https://v2.api.mycover.ai/v2/products/utility/e55de863-7d98-4236-bd61-40328cd7f7fc
{
"responseCode": 1,
"responseText": "Product utility fetched successfully",
"data": [
{
"label": "Abia",
"value": "Abia"
},
{
"label": "Adamawa",
"value": "Adamawa"
},
{
"label": "Akwa Ibom",
"value": "Akwa Ibom"
},
{
"label": "Anambra",
"value": "Anambra"
},
{
"label": "Bauchi",
"value": "Bauchi"
},
{
"label": "Bayelsa",
"value": "Bayelsa"
},
// ...
]
}
Use this endpoint to get AIICO vehicle make list
https://v2.api.mycover.ai/v2/products/utility/fa2fb85f-9d1a-4652-a136-9da8e4c57c5c
{
"responseCode": 1,
"responseText": "Product utility fetched successfully",
"data": [
{
"label": "Acura",
"value": "Acura"
},
{
"label": "Alfa Romeo",
"value": "Alfa Romeo"
},
{
"label": "Audi",
"value": "Audi"
},
// ...
]
}