Lists
Create a List
Creates a new list in the system.
POST
/
lists
Copy
curl --request POST \
--url https://app.prontohq.com/api/v2/lists \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"webhook_url": "<string>",
"companies": [
{
"name": "Pronto",
"country_code": "FR",
"domain": "prontohq.com",
"linkedin_url": "https://www.linkedin.com/company/prontohq"
},
{
"name": "Google",
"country_code": "US",
"domain": "google.com",
"linkedin_url": "https://www.linkedin.com/company/google"
}
]
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_list_id": 123
}
Authorizations
Your API key
Body
application/json
List object that needs to be added
The body is of type object
.
Response
201 - application/json
List created successfully
The response is of type object
.
Copy
curl --request POST \
--url https://app.prontohq.com/api/v2/lists \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"webhook_url": "<string>",
"companies": [
{
"name": "Pronto",
"country_code": "FR",
"domain": "prontohq.com",
"linkedin_url": "https://www.linkedin.com/company/prontohq"
},
{
"name": "Google",
"country_code": "US",
"domain": "google.com",
"linkedin_url": "https://www.linkedin.com/company/google"
}
]
}'
Copy
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_list_id": 123
}
Assistant
Responses are generated using AI and may contain mistakes.