For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
    • API Basics
  • Products
    • Global Fiat Payouts
    • On-Ramps and Off-Ramps
  • Integration Guides
    • Global payouts integration guide
    • Country-specific details
  • API Reference
      • GETList Individuals
      • POSTCreate an Individual
      • GETRetrieve an Individual
LogoLogo
API ReferenceIndividuals

List Individuals

GET
https://api.latitude.xyz/v1/individuals
GET
/v1/individuals
$curl https://api.latitude.xyz/v1/individuals \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "data": [
3 {
4 "id": "ind_9f8b7c6d-1234-4e56-8a9b-0c1d2e3f4a5b",
5 "given_name": "Maria",
6 "family_name": "Gonzalez",
7 "email": "[email protected]",
8 "phone": "+54 9 11 2345 6789",
9 "date_of_birth": "1985-07-23",
10 "idv_consent_recorded_at": "2024-04-10T14:22:00Z",
11 "address": {
12 "country": "AR",
13 "line_1": "Av. Corrientes 1234",
14 "line_2": "Depto 5B",
15 "city": "Buenos Aires",
16 "state": "CABA",
17 "postal_code": "1043"
18 },
19 "country": "AR",
20 "status": "active",
21 "product_types": [
22 "global_payouts"
23 ],
24 "financial_accounts": [
25 {
26 "id": "fa_7a6b5c4d-9876-4321-0fed-cba987654321",
27 "type": "pix",
28 "details": {
29 "key": "[email protected]"
30 },
31 "created_at": "2024-01-15T09:30:00Z",
32 "updated_at": "2024-01-15T09:30:00Z"
33 }
34 ],
35 "created_at": "2024-01-10T08:00:00Z",
36 "updated_at": "2024-04-10T14:22:00Z",
37 "document": {
38 "type": "cuit",
39 "number": "20-12345678-9"
40 },
41 "status_details": [
42 {
43 "code": "verification_front_image_needed",
44 "message": "Front image of the document is required for verification."
45 }
46 ]
47 }
48 ],
49 "has_next_page": true,
50 "cursor": "eyJpZCI6ImluZF85ZjhiN2M2ZC0xMjM0LTRlNTYtOGE5Yi0wYzFkMmUzZjRhNWIifQ==",
51 "total_count": 45
52}
Retrieves a paginated list of individuals for your customer account
Was this page helpful?
Previous

Create an Individual

Next
Built with

Query parameters

limitintegerOptional1-100Defaults to 20

Number of records per page (max 100)

cursorstringOptional
Cursor for pagination
product_typeenumOptional

Return only individuals that include this product type (e.g. on_ramp, off_ramp, global_payouts)

Allowed values:

Response

List Individuals
datalist of objects
Array of individuals for the current page
has_next_pageboolean
Whether there are more pages available
cursorstring or null

Cursor for fetching the next page (null if no next page)

total_countinteger

Total number of individuals matching the request filters (for the authenticated customer)