Lists
Retrieve all Lists
Lists
Retrieve all Lists
Retrieve all your lists
GET
/
lists
curl --request GET \
--url https://app.prontohq.com/api/v2/lists \
--header 'X-API-KEY: <api-key>'
[
{
"lists": [
{
"name": "Tech Companies 2024",
"id": "8e1dcba0-f0bb-4071-99fc-f18ba6559ccc",
"linkedin_list_id": 123456789,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-02T00:00:00Z",
"status": "completed"
}
]
}
]
Authorizations
Your API key
Response
200 - application/json
A JSON array of list objects
The name of the list
Example:
"Tech Companies 2024"
The id of the list
Example:
"8e1dcba0-f0bb-4071-99fc-f18ba6559ccc"
The LinkedIn ID of the list
Example:
123456789
The creation date of the list
Example:
"2024-01-01T00:00:00Z"
The last modified date of the list
Example:
"2024-01-02T00:00:00Z"
The current status of the list import process
Available options:
pending
, completed
, failed
Example:
"completed"
curl --request GET \
--url https://app.prontohq.com/api/v2/lists \
--header 'X-API-KEY: <api-key>'
[
{
"lists": [
{
"name": "Tech Companies 2024",
"id": "8e1dcba0-f0bb-4071-99fc-f18ba6559ccc",
"linkedin_list_id": 123456789,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-02T00:00:00Z",
"status": "completed"
}
]
}
]