Websites
Get a website
Parameters
Name | Required | Type | Description |
---|---|---|---|
with_pages | optional | boolean | If true, returns the website's pages |
curl --request GET \
--url https://api.embedding.io/v0/websites/web_1234 \
--header 'Authorization: Bearer YOUR_API_KEY'
Returns
Name | Type | Description |
---|---|---|
id | string | The ID of the website |
domain | string | The domain of the website |
pages | array | A list of the website's pages |
{
"id": "web_1234",
"domain": "www.example.com",
"pages": [
{
// ...
}
]
}