Go back
Unipile

Unipile

v1 · 60 endpoints

Unipile (60)

API Explorer

- credits
ColdIQ
APIs→Unipile
Ctrl + O
Switch provider
Ctrl + P
Switch endpoint
GEThttps://api.coldiq.com/v1/unipile/accounts0 cr

Credits: free.

Authentication

No API key - create one in the dashboard

Parameters

Pagination cursor from the previous response.

Number of items to return (1–250).

Your Unipile access token. Optional if you have connected your Unipile account in the dashboard.

Your Unipile DSN base URL (e.g. https://api15.unipile.com:14591). Optional if you have connected your Unipile account in the dashboard.

import requests

url = "https://api.coldiq.com/v1/unipile/accounts"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())