Skip to main content
GET
/
v1
/
workspace
/
website
/
{website_id}
Get website details
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>"
    }
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Path Parameters

website_id
string
required

Unique identifier of the website

Example:

"website_abc123"

Response

Website details retrieved successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required