List connected profiles
curl --request GET \
--url https://api.nylon.dev/v1/profiles \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nylon.dev/v1/profiles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.nylon.dev/v1/profiles"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nylon.dev/v1/profiles",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.nylon.dev/v1/profiles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "profile_01k4nylon",
"network": "instagram",
"name": "Nylon Studio",
"username": "nylonstudio",
"avatarUrl": "https://cdn.example.com/avatar.jpg",
"status": "active",
"connectedAt": "2026-05-14T10:20:00.000Z"
}
]
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}Profiles
List connected profiles
Return every social profile connected to the authenticated Nylon account.
GET
https://api.nylon.dev
/
v1
/
profiles
List connected profiles
curl --request GET \
--url https://api.nylon.dev/v1/profiles \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nylon.dev/v1/profiles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.nylon.dev/v1/profiles"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nylon.dev/v1/profiles",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.nylon.dev/v1/profiles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "profile_01k4nylon",
"network": "instagram",
"name": "Nylon Studio",
"username": "nylonstudio",
"avatarUrl": "https://cdn.example.com/avatar.jpg",
"status": "active",
"connectedAt": "2026-05-14T10:20:00.000Z"
}
]
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}{
"error": {
"code": "unauthorized",
"message": "A valid Nylon API key is required."
}
}Authorizations
An API key beginning with nylon_live_.
Response
Connected profiles were returned successfully.
Hide child attributes
Hide child attributes
Stable Nylon identifier for the connected profile.
Example:
"profile_01k4nylon"
Social network providing the profile.
Available options:
instagram, facebook, linkedin, tiktok, youtube, x Example:
"instagram"
Display name of the connected profile.
Example:
"Nylon Studio"
Current health of the connection.
Available options:
active, reconnect_required Example:
"active"
Time at which the profile was connected to Nylon.
Example:
"2026-05-14T10:20:00.000Z"
Network username without a leading @, when available.
Example:
"nylonstudio"
Profile image URL, when available.
Example:
"https://cdn.example.com/avatar.jpg"
⌘I