@rwu2359
Thanks for your concerns. We will update(EMAILCLOUD-460) the documentation for cURL REST API examples as soon as possible.
Meanwhile, you can use Web API explorer to get sample cURL examples for reference. For example, to parse images to vCard you can use the following API in your browser. However, you can check the following cURL commands to parse images to vCard as well. Please feel free to contact us for any further assistance in this regard.
PUT ​/email​/AiBcr​/parse Parse images to vCard document models
# First get Access Token
# Get Customer Key and Customer ID from https://dashboard.aspose.cloud/
curl -X POST "https://api.aspose.cloud/connect/token"
-d "grant_type=client_credentials&client_id=xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx&client_secret=xxxxxxxxxxxxxxxxxx"
-H "Content-Type: application/x-www-form-urlencoded"
-H "Accept: application/json"
#Parse images to vCard document models
curl -X PUT "https://api.aspose.cloud/v4.0/email/AiBcr/parse?countries=us&languages=en&isSingle=true"
-H "accept: application/json"
-H "authorization: Bearer [Access_Token]"
-H "Content-Type: multipart/form-data"
-H "x-aspose-client: Containerize.Swagger"
-F "File"="@C:/Temp/AI_Email_Parser.png"