Get SEO settings
<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>
Returns the app's saved SEO settings.
result carries only the keys you have actually saved, because it is the stored document rather than a rendered view of it. An app whose SEO settings have never been changed returns an empty object, so read a missing key as the default documented on that field instead of as unset.
Change them with Update SEO settings. This endpoint is limited to 30 requests per minute per app, and that budget is shared with the app's other SEO endpoints.
<Warning>The response includes fields beyond the ones documented here. Don't rely on undocumented response fields, as they can change at any time.</Warning>
Path parameters
ID of the app whose SEO settings you want.
ID of the app whose SEO settings you want.
Response
The app's saved SEO settings.
Example response
{
"result": {
"platform_meta_injection_enabled": true,
"platform_jsonld_injection_enabled": true,
"robots_txt_enabled": true,
"sitemap_xml_enabled": true,
"ai_crawlers_enabled": true,
"synthesized_breadcrumb_enabled": true,
"canonical_url": "https://acme.com",
"content_query_params": [
"article"
],
"custom_json_ld": [
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Acme CRM"
}
],
"website_schema": {
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Acme CRM",
"url": "https://acme.com"
},
"organization_schema": {
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme",
"url": "https://acme.com"
},
"breadcrumb_schema": {
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": []
},
"faq_schema": {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": []
},
"pages": {
"Home": {
"description": "Track leads and deals in one place.",
"og_image": "https://cdn.example.com/acme-og.png",
"title": "Acme CRM"
}
}
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.