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": "",
      "worker_role":"courier"
    },
    "ids_info": [
      {
        "type": "national",
        "name": "curp",
        "value": "RIAB980722HDFTNR02"
      }
    ],
    "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/
worker_roleWorker Rolestring"driver"

⚠️ 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
bank_codeBank codestring""

⚠️ 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 account
addressstringWorker's address.
birthdaystringWorker's date of birth in YY-MM-DD format
city_namestringWorker's city.
emailstringWorker's email
first_namestringName(s) of worker
last_namestringWorker's surname
phonestringWorker's phone
picture_urlstringURL with the worker's profile image
worker_rolestringWorker Role (driver, courier, both)
acceptance_ratefloatTrip/Order Acceptance Rate
cancellation_rate (soon to be deprecated)floatTrip/order cancellation rate
debt_paidfloatTotal debt that the worker has paid to the platform.
debt_pendingfloatPending debt that the worker has with the platform.
level_namestringName of the level to which the worker belongs
lifetime_tripsintTotal trips that the worker has made.
ratingfloatWorker rating within the platform
thumps_up (soon to be deprecated)stringUber eats metric that refers to the quality of service.
time_since_first_tripstringTime elapsed since the first trip. Examples: 2.5 years, 4 months, 2+ years.
brandstringBrand of the vehicle used by the worker
license_platestringIndicates the license plates of the vehicle used by the worker.
modelstringIndicates the model of vehicle used by the worker
typestringIndicates the type of vehicle used by the worker.
vinstringSerial number of the vehicle used by the worker
yearstringYear of vehicle used by the worker

📘

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