Python
from superu import SuperU client = SuperU("YOUR_SUPERU_API_KEY") payload = { "page": "1", "limit": "10", "search_query": "ava" } response = client.contacts.list(**payload) print(response)
{ "status": "success", "contact_list": [ { "contact_id": "con_01HXR9N8QCYHTWNB5JX22P4QZA", "first_name": "Ava", "phone_number": "5551234567" } ], "page": 1, "limit": 10 }
Returns contacts with pagination and optional search.
Your SuperU API key.
Page number
x >= 1
1
Contacts per page (1-100)
1 <= x <= 100
10
Search text
"ava"
Contacts returned
Generic Response schema.
Status value.
"success"
Message value.
"Request completed successfully"
Data value.