Mailing lists
List mailing lists
Learn
- Get started
- Editing emails
- Loop builder
- Events
- Contacts
- Transactional email
- Integrations
- SMTP
- Account
API
- API Introduction
- API Reference
- Contacts
- Contact properties
- Mailing lists
- Events
- Transactional emails
- API key
- SDKs
- Webhooks
- API Changelog
Guides
- All guides
- Getting started
- Deliverability
- Integrations
- Creating emails
- Email basics
Mailing lists
List mailing lists
Retrieve a list of your account’s mailing lists.
GET
/
v1
/
lists
curl --request GET \
--url https://app.loops.so/api/v1/lists \
--header 'Authorization: Bearer <token>'
[
{
"id": "clxf1nxlb000t0ml79ajwcsj0",
"name": "Mailing List Beta",
"description": null,
"isPublic": true
},
{
"id": "clxf2q43u00010mlh12q9ggx1",
"name": "Product B Launch",
"description": "Get pre-launch updates about Product B.",
"isPublic": true
}
]
Request
No parameters.
Response
This endpoint will return a list of mailing list objects.
If your account has no mailing lists, an empty list will be returned.
[
{
"id": "clxf1nxlb000t0ml79ajwcsj0",
"name": "Mailing List Beta",
"description": null,
"isPublic": true
},
{
"id": "clxf2q43u00010mlh12q9ggx1",
"name": "Product B Launch",
"description": "Get pre-launch updates about Product B.",
"isPublic": true
}
]
Was this page helpful?
curl --request GET \
--url https://app.loops.so/api/v1/lists \
--header 'Authorization: Bearer <token>'
[
{
"id": "clxf1nxlb000t0ml79ajwcsj0",
"name": "Mailing List Beta",
"description": null,
"isPublic": true
},
{
"id": "clxf2q43u00010mlh12q9ggx1",
"name": "Product B Launch",
"description": "Get pre-launch updates about Product B.",
"isPublic": true
}
]