Get Profile School Interests
curl --request POST \
--url https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"username": "steven-bandrowczak-51866a4",
"page": 1
}
'import requests
url = "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools"
payload = {
"username": "steven-bandrowczak-51866a4",
"page": 1
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({username: 'steven-bandrowczak-51866a4', page: 1})
};
fetch('https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'username' => 'steven-bandrowczak-51866a4',
'page' => 1
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools"
payload := strings.NewReader("{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "",
"data": {
"items": [
{
"id": 11536,
"followerCount": 91001,
"name": "Long Island University",
"url": "https://www.linkedin.com/school/11536/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_200_200/company-logo_200_200/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=CkH8thGs0z3Q4MAYW9EJq_xrcoxyYJivpO_VRmsQS1E",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_100_100/company-logo_100_100/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=bIOCxv2TzLaCXtlOZSBgXy-pfR4RBsyMA6w5TRcYCYA",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_400_400/company-logo_400_400/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=t05IU08MWVYf7ZVOp55sZbXoZjPLtmtTibjNxSZ7nFY",
"width": 400,
"height": 400
}
]
},
{
"id": 2624,
"followerCount": 704993,
"name": "Columbia University",
"url": "https://www.linkedin.com/school/2624/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_200_200/company-logo_200_200/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=f1fUjnQakjfofK2V0HWXQPpbllIZEEv4sECtX-Ij2j4",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_100_100/company-logo_100_100/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=s1Be51KJmYzlidrXEeHeV_MLz128NEnEbjfg_M-I8Us",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_400_400/company-logo_400_400/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=kP4FU5nmdlCP1THI6LAUHawS7-RovpnWEH7UPcd-Iq8",
"width": 400,
"height": 400
}
]
},
{
"id": 164299,
"followerCount": 287963,
"name": "IESE Business School",
"url": "https://www.linkedin.com/school/164299/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_200_200/company-logo_200_200/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=oZjb99XZAiduJyz6RMyBSXx1aaqwhB4Hur-R7dw66s8",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_100_100/company-logo_100_100/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=MChShvVwmEsg1iz4egpHC4nf9MafEzg3E3qbu5-u3hg",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_400_400/company-logo_400_400/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=5wzMpKpSeOGGD_0AqhIR834RJL3uB2lAR5t23wyjq74",
"width": 400,
"height": 400
}
]
}
],
"total": 3,
"totalPages": 1,
"currentPage": 1
}
}Profile APIs
Get Profile School Interests
Get the profile’s school interests up to 50 results per page
POST
/
v1
/
data
/
linkedin
/
profiles
/
interests
/
schools
Get Profile School Interests
curl --request POST \
--url https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"username": "steven-bandrowczak-51866a4",
"page": 1
}
'import requests
url = "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools"
payload = {
"username": "steven-bandrowczak-51866a4",
"page": 1
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({username: 'steven-bandrowczak-51866a4', page: 1})
};
fetch('https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'username' => 'steven-bandrowczak-51866a4',
'page' => 1
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools"
payload := strings.NewReader("{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agntdata.dev/v1/data/linkedin/profiles/interests/schools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"username\": \"steven-bandrowczak-51866a4\",\n \"page\": 1\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "",
"data": {
"items": [
{
"id": 11536,
"followerCount": 91001,
"name": "Long Island University",
"url": "https://www.linkedin.com/school/11536/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_200_200/company-logo_200_200/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=CkH8thGs0z3Q4MAYW9EJq_xrcoxyYJivpO_VRmsQS1E",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_100_100/company-logo_100_100/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=bIOCxv2TzLaCXtlOZSBgXy-pfR4RBsyMA6w5TRcYCYA",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQHjEf9qzUGqkw/company-logo_400_400/company-logo_400_400/0/1630568551736/long_island_university_logo?e=1755129600&v=beta&t=t05IU08MWVYf7ZVOp55sZbXoZjPLtmtTibjNxSZ7nFY",
"width": 400,
"height": 400
}
]
},
{
"id": 2624,
"followerCount": 704993,
"name": "Columbia University",
"url": "https://www.linkedin.com/school/2624/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_200_200/company-logo_200_200/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=f1fUjnQakjfofK2V0HWXQPpbllIZEEv4sECtX-Ij2j4",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_100_100/company-logo_100_100/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=s1Be51KJmYzlidrXEeHeV_MLz128NEnEbjfg_M-I8Us",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4E0BAQFxn78nvVaTDA/company-logo_400_400/company-logo_400_400/0/1630638452046/columbia_university_logo?e=1755129600&v=beta&t=kP4FU5nmdlCP1THI6LAUHawS7-RovpnWEH7UPcd-Iq8",
"width": 400,
"height": 400
}
]
},
{
"id": 164299,
"followerCount": 287963,
"name": "IESE Business School",
"url": "https://www.linkedin.com/school/164299/",
"logo": [
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_200_200/company-logo_200_200/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=oZjb99XZAiduJyz6RMyBSXx1aaqwhB4Hur-R7dw66s8",
"width": 200,
"height": 200
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_100_100/company-logo_100_100/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=MChShvVwmEsg1iz4egpHC4nf9MafEzg3E3qbu5-u3hg",
"width": 100,
"height": 100
},
{
"url": "https://media.licdn.com/dms/image/v2/C4D0BAQFPGWYsxlqfHA/company-logo_400_400/company-logo_400_400/0/1630491311999/iese_business_school_logo?e=1755129600&v=beta&t=5wzMpKpSeOGGD_0AqhIR834RJL3uB2lAR5t23wyjq74",
"width": 400,
"height": 400
}
]
}
],
"total": 3,
"totalPages": 1,
"currentPage": 1
}
}⌘I