Skip to main content
GET
/
v1
/
web-links
/
{id}
Get web link by ID
curl --request GET \
  --url https://api.wellapp.ai/v1/web-links/{id} \
  --header 'Authorization: <authorization>'
{
  "data": {
    "type": "web_link",
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "attributes": {
      "platform": "linkedin",
      "url": "https://linkedin.com/company/tech-startup-inc",
      "created_at": "2025-08-04T10:30:00.000Z",
      "updated_at": "2025-08-04T10:30:00.000Z"
    },
    "relationships": {
      "persons": {
        "data": [
          {
            "type": "people",
            "id": "person1"
          }
        ]
      },
      "companies": {
        "data": [
          {
            "type": "company",
            "id": "company1"
          }
        ]
      },
      "workspaces": {
        "data": [
          {
            "type": "workspace",
            "id": "workspace1"
          }
        ]
      }
    }
  },
  "included": [
    {
      "type": "workspace",
      "id": "workspace1",
      "attributes": {
        "name": "Tech Startup Workspace",
        "created_at": "2025-01-01T00:00:00Z",
        "updated_at": "2025-01-01T00:00:00Z"
      }
    }
  ]
}

Headers

Authorization
string
required

Bearer token for authentication

Path Parameters

id
string<uuid>
required

Web link ID to retrieve

Query Parameters

include
string

Comma-separated list of relationships to include detailed data for. Available options: workspace, persons, companies

Response

Web link retrieved successfully

data
object
I