Profile

Discover the personal information we retrieve from Gig Economy integrations.

Definition

The profile of a gig economy account contains basic personal information as well as some performance metrics that can complement your workflows.

You can access the profile of an account via the GET profile endpoint .


Profile Information for Gig Economy Accounts

Let's begin with a representative example of the profile information you could recover from our GET Profile Endpoint:

{
  "success": true,
  "error": null,
  "data": {
    "account_id": "ed37701d-fe4f-4f1f-861a-58ba4a364918",
    "external_id": "c38543d2-04c6-4c8d-8bca-a649416e0cbd",
    "profile": {
      "first_name": "Ricardo Esteban",
      "last_name": "Ruiz Moreno",
      "email": "[email protected]",
      "birthday": "1998-05-22",
      "phone": "5528593132",
      "address": "",
      "city_name": "Ciudad de México",
      "picture_url": ""
    },
    "ids_info": [
      {
        "type": "national",
        "name": "curp",
        "value": "RIAB980522HDFZNR02"
      }
    ],
    "bank_info": null,
    "vehicle_info": {
      "type": "motorcycle",
      "brand": null,
      "model": null,
      "year": null,
      "license_plate": null,
      "vin": null
    },
    "metrics_info": {
      "acceptance_rate": 1,
      "cancellation_rate": null,
      "thumps_up": null,
      "rating": 4.9,
      "lifetime_trips": 1444,
      "time_since_first_trip": null,
      "level_name": "diamond",
      "debt_pending": 0,
      "debt_paid": 600,
      "activation_status": "activated"
    }
  }
}

Let's dive into a data dictionary for each section.

Profile Section

DataDescriptionTypeExample
first_nameFirst NamestringJose Carlos
last_nameLast NamestringHuerta Garcia
emailEmailstring[email protected]
birthdayBirthdaystring1990-01-01
phoneTelephonestring15583490938
addressAddressstringCalle de la Paz, #5, Col. Centro, C.P. 06060, México, D.F.
city_nameCitystringMexico City
picture_urlProfile picture urlstringhttps://www.example.com/

⚠️ All fields are nullable.


Bank Information

DataDescriptionTypeExample
account_numberAccount numberstring6461801921****
holder_nameOwner namestringJose Carlos Huerta Garcia
holder_addressAddressstringCalle de la Reforma #123
bank_nameBank namestringBanco Azteca

⚠️ All fields are nullable.


Vehicle Information

DataDescriptionTypeExample
typeVehicle typestringcar
brandVehicle brandstringFord
modelModelstringFiesta
yearVehicle yearstring2017
license_platePlate numberstringABC123
vinVehicle VINstring3SCK2AEG8M1006777

⚠️ All fields are nullable.


Metrics Information

DataDescriptionTypeExample
acceptance_rateAcceptance ratefloat0.97
cancellation_rateCancellation rate (percentage of trips canceled after being accepted)float0.05
ratingWorker rating (the higher the better)float4.91
lifetime_tripsTotal trips since registering on the platformint17
time_since_first_tripTime since first tripstring9 months
level_nameLevelstringDiamond
debt_pendingPending Debtfloat0.00
debt_paidPaid Debtfloat0.00
activation_statusActivation statusstringactive

⚠️ All fields are nullable.


IDs Info Section

DataDescriptionTypeExample
typeID Typestringnational
nameID NamestringCURP
valueValuestringRIAB980522HDFZNR02

⚠️ All fields are nullable.


Data we recover by platform

DataTypeDescriptionUberDidiCabifyInDrive99Rappi
account_idstringPalenca internal identifier of the worker's accountYesYesYesYesYesYes
addressstringWorker's address.NoNoNoNoNoYes
birthdaystringWorker's date of birth in YY-MM-DD formatNoNoNoNoNoYes
city_namestringWorker's city.NoYesNoYesYesYes
emailstringWorker's emailYesYesYesYesYesYes
first_namestringName(s) of workerYesYesYesYesYesYes
last_namestringWorker's surnameYesYesYesYesYesYes
phonestringWorker's phoneYesYesYesYesYesYes
picture_urlstringURL with the worker's profile imageYesYesYesYesYesYes
acceptance_ratefloatTrip/Order Acceptance RateYesYesNoNoYesYes
cancellation_ratefloatTrip/order cancellation rateYesNoNoNoNoNo
debt_paidfloatTotal debt that the worker has paid to the platform.NoNoNoNoNoYes
debt_pendingfloatPending debt that the worker has with the platform.NoNoNoNoNoYes
level_namestringName of the level to which the worker belongsYesYesNoYesYesYes
lifetime_tripsintTotal trips that the worker has made.YesYesNoYesYesNo
ratingfloatWorker rating within the platformYesYesYesYesYesYes
thumps_upstringUber eats metric that refers to the quality of service.YesNoNoNoNoNo
time_since_first_tripstringTime elapsed since the first trip. Examples: 2.5 years, 4 months, 2+ years.YesYesNoNoYesNo
brandstringBrand of the vehicle used by the workerYesYesNoYesYesNo
license_platestringIndicates the license plates of the vehicle used by the worker.YesYesNoYesYesNo
modelstringIndicates the model of vehicle used by the workerYesYesNoNoYesNo
typestringIndicates the type of vehicle used by the worker.YesYesYesYesYesYes
vinstringSerial number of the vehicle used by the workerYesYesNoYesYesNo
yearstringYear of vehicle used by the workerYesYesYesYesYesYes

📘

Disclaimer

Our dependency on external integrations prevents us from guaranteeing our clients the recovery of any of the previous fields during our Income Verification processes.


What’s Next