# Get all landing pages
You can return all of your existing landing pages.
GET
/landing-page/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/landing-page/"
# Response
{'count': 2,
'next': None,
'previous': None,
'results': [{'id': 'qjnvmw',
'description': None,
'name': 'landing 2',
'total_views': 0,
'total_conversions': 0,
'status': 2,
'category': None,
'created_at': '2024-09-19T12:42:18.010959Z',
'published_at': '2024-09-19T12:43:46.146015Z'},
{'id': 'b7i1n9',
'description': None,
'name': 'landing 1',
'total_views': 0,
'total_conversions': 0,
'status': 2,
'category': None,
'created_at': '2024-09-19T12:41:32.115644Z',
'published_at': '2024-09-19T12:42:01.361348Z'}]}