connect
List LinkedIn orgs
Fetch full LinkedIn organization details (logos, vanity names, websites) for custom UI. No authentication required, just the tempToken from OAuth.
AuthorizationBearer <token>
API key authentication - use your Late API key as a Bearer token
In: header
Query Parameters
tempTokenstring
The temporary LinkedIn access token from the OAuth redirect
orgIdsstring
Comma-separated list of organization IDs to fetch details for (max 100)
Response Body
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/connect/linkedin/organizations?tempToken=string&orgIds=12345678%2C87654321%2C11111111"{
"organizations": [
{
"id": "12345678",
"logoUrl": "https://media.licdn.com/dms/image/v2/...",
"vanityName": "acme-corp",
"website": "https://acme.com",
"industry": "Technology",
"description": "Leading provider of innovative solutions"
},
{
"id": "87654321",
"logoUrl": "https://media.licdn.com/dms/image/v2/...",
"vanityName": "example-inc",
"website": "https://example.com"
},
{
"id": "11111111"
}
]
}{
"error": "Missing tempToken parameter"
}Empty