Run in Apidog
Returns full details of a single deal owned by the authenticated employer, including stage identifier, payment token, current status, currency, and billing breakdown for both sides.
Request Code Samples
curl --location 'https://useme.com/api/1.0/deal//' \
--header 'Authorization: Token <here-paste-your-token>' Responses The deal details were successfully retrieved.
{
"success" : true ,
"data" : {
"id" : 1001 ,
"stage_id" : 5001 ,
"contractor_email" : "contractor@email.com" ,
"partner_id" : "partner-deal-2001" ,
"status" : "created" ,
"payment_token" : "UMCSDVCX" ,
"currency" : "EUR" ,
"billing" : {
"commission" : "120.00" ,
"employer" : {
"net_amount" : "1000.00" ,
"vat_amount" : "230.00" ,
"gross_amount" : "1230.00"
} ,
"freelancer" : {
"net_amount" : "850.00" ,
"vat_amount" : "0.00" ,
"pit_advance" : "0.00" ,
"gross_amount" : "850.00"
}
}
}
}
Modified at 2026-05-05 07:55:37