Search Documentation
Search for a documentation page...
Socials API
REST API endpoints for reading and setting your store's social media links.
Your store has a set of social media links — one slot per platform — surfaced in the storefront footer and elsewhere. Each value is the handle or full URL you entered, or null when that platform isn't set. The supported platforms are instagram, facebook, x, youtube, linkedin, tiktok, and email.
Get Socials
Returns the store's configured social media links, keyed by platform. Every platform key is always present in the response; unset platforms come back as null.
Response (200)
Store Not Found (404)
Set Socials
Replaces the store's social links wholesale. Provide a per-platform map of handles or URLs under socials. Omit a platform or pass null to clear it — the response always returns the full normalized map with every platform key present. Values are trimmed, and empty strings are normalized to null.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
socials | object | Yes | Per-platform handle/URL map. Replaces the stored socials wholesale |
The socials object accepts these keys, each an optional string or null:
| Key | Type | Description |
|---|---|---|
instagram | string | null | Instagram handle or URL |
facebook | string | null | Facebook handle or URL |
x | string | null | X (Twitter) handle or URL |
youtube | string | null | YouTube channel handle or URL |
linkedin | string | null | LinkedIn handle or URL |
tiktok | string | null | TikTok handle or URL |
email | string | null | Public contact email address |
Response (200)
Returns the normalized links. Platforms not included in the request are set to null.