curl --request GET \
--url https://apidev.lindo.ai/v1/workspace/website/{website_id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"result": {
"website_id": "website_abc123",
"business_name": "My Business",
"business_description": "A great business providing excellent services",
"preview_url": "https://preview.example.com",
"custom_domain": "www.mybusiness.com",
"verified_domain": "www.mybusiness.com",
"language": "en",
"activated": true,
"theme": {
"primaryColor": "#007bff",
"font": "Inter",
"title_font": "Poppins"
},
"integrations": [
{
"name": "matomo",
"ready": true,
"value": "123"
}
],
"socials": {
"twitter": "https://twitter.com/mybusiness"
},
"fonts": {
"heading": "Roboto",
"body": "Open Sans"
},
"created_date": "2024-01-15T10:30:00Z",
"global_header": "<nav>Header content</nav>",
"global_footer": "<footer>Footer content</footer>",
"custom_codes": {
"header": "<style>/* custom styles */</style>",
"footer": "<script>/* custom scripts */</script>"
}
}
}Retrieves detailed information about a specific website including settings, integrations, and configuration.
curl --request GET \
--url https://apidev.lindo.ai/v1/workspace/website/{website_id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"result": {
"website_id": "website_abc123",
"business_name": "My Business",
"business_description": "A great business providing excellent services",
"preview_url": "https://preview.example.com",
"custom_domain": "www.mybusiness.com",
"verified_domain": "www.mybusiness.com",
"language": "en",
"activated": true,
"theme": {
"primaryColor": "#007bff",
"font": "Inter",
"title_font": "Poppins"
},
"integrations": [
{
"name": "matomo",
"ready": true,
"value": "123"
}
],
"socials": {
"twitter": "https://twitter.com/mybusiness"
},
"fonts": {
"heading": "Roboto",
"body": "Open Sans"
},
"created_date": "2024-01-15T10:30:00Z",
"global_header": "<nav>Header content</nav>",
"global_footer": "<footer>Footer content</footer>",
"custom_codes": {
"header": "<style>/* custom styles */</style>",
"footer": "<script>/* custom scripts */</script>"
}
}
}Enter your API key (starts with lindo_sk_)
Unique identifier of the website
"website_abc123"
Was this page helpful?