Get web-Link by id
get
/v1/web-links/{web_link_id}Fetches a single web link (social link) row by id from the records pipeline, scoped to the workspace. Read-only; no side effects. 404 when absent or out of scope.
Requires a bearer token: Authorization: Bearer <token>.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| web_link_id | string <uuid> | Yes | Public UUID of the web link.e.g. 9b0c1d2e-3f40-4516-9728-3a4b5c6d7e8f |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| workspaceId | string <uuid> | No | Workspace to scope to; defaults to the token's workspace.e.g. 8f6b2c10-4a1e-4d2b-9c3a-1f0e7a5b6c21 |
Request
cURL
curl -X GET https://api.wellapp.ai/v1/web-links/{web_link_id} \
-H "Authorization: Bearer $WELL_API_TOKEN"Responses
200 — The web link row.
{
"data": {
"type": "social_link",
"id": "9b0c1d2e-3f40-4516-9728-3a4b5c6d7e8f",
"attributes": {
"url": "https://www.linkedin.com/company/foldspace-ai",
"platform": "linkedin"
}
}
}401 — Unauthorized
{
"code": "UNAUTHORIZED",
"status": 401,
"title": "Unauthorized",
"message": "See title.",
"meta": {
"trace_id": "a1b2c3",
"log_id": "a1b2c3"
}
}403 — Forbidden
{
"code": "FORBIDDEN",
"status": 403,
"title": "Forbidden",
"message": "See title.",
"meta": {
"trace_id": "a1b2c3",
"log_id": "a1b2c3"
}
}404 — Not Found
{
"code": "NOT_FOUND",
"status": 404,
"title": "Not Found",
"message": "See title.",
"meta": {
"trace_id": "a1b2c3",
"log_id": "a1b2c3"
}
}