Get an account
curl --request GET \
--url https://api.tryklint.ai/v1/instagram/accounts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tryklint.ai/v1/instagram/accounts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tryklint.ai/v1/instagram/accounts/{id}', 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.tryklint.ai/v1/instagram/accounts/{id}",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tryklint.ai/v1/instagram/accounts/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tryklint.ai/v1/instagram/accounts/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tryklint.ai/v1/instagram/accounts/{id}")
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_bodyAccounts
Get an account
Read one account: current profile facts, counters, and publishing interpretation.
GET
/
v1
/
instagram
/
accounts
/
{id}
Get an account
curl --request GET \
--url https://api.tryklint.ai/v1/instagram/accounts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tryklint.ai/v1/instagram/accounts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tryklint.ai/v1/instagram/accounts/{id}', 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.tryklint.ai/v1/instagram/accounts/{id}",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tryklint.ai/v1/instagram/accounts/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tryklint.ai/v1/instagram/accounts/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tryklint.ai/v1/instagram/accounts/{id}")
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_bodyReturns the same fixed account representation as Search accounts: profile facts, public counters, and bounded publishing interpretation.
| Parameter | Notes |
|---|---|
id | Klint account ID (ig_account_…, e.g. from a result’s author.id) or the account handle, with or without a leading @. A handle resolves to its current holder in what Klint tracks and is not durable. Key on id. See Extract. |
curl "https://api.tryklint.ai/v1/instagram/accounts/ig_account_01j2k9m4q7" \
-H "Authorization: Bearer $KLINT_API_KEY"
200 response
200 response
{
"id": "ig_account_01j2k9m4q7",
"handle": "mayamoveswell",
"display_name": "Maya | Family Wellness",
"web_url": "https://www.instagram.com/mayamoveswell/",
"avatar_url": "https://media.tryklint.ai/accounts/ig_account_01j2k9m4q7/avatar",
"biography": "Sporty stay-at-home mom sharing practical kids gut-health and family-wellness tips. Spokane, WA.",
"bio_links": [
{
"url": "https://mayamoveswell.example/resources",
"title": "Free family wellness guides"
}
],
"account_type": "creator",
"category_label": "Health/beauty",
"declared_locations": [
{
"country_code": "US",
"region_code": "US-WA",
"locality": "Spokane"
}
],
"is_verified": false,
"is_private": false,
"followers_count": 24300,
"following_count": 684,
"posts_count": 418,
"publishing_summary": "Shares practical family-wellness education through at-home fitness routines, simple meal preparation, and recurring explanations of children's gut health.",
"publishing_languages": ["en"],
"niches": ["family_wellness", "gut_health", "home_fitness"],
"observed_at": "2026-07-15T15:40:00Z"
}
Behavior worth knowing
- Use this operation to dereference an embedded seven-field author summary. This is the intended way to get biography, counters, niches, and freshness.
- A confirmed-private account may still return its current public profile facts with
is_private: true. Every post-derived publishing field is thennull. - A fully unobservable, deactivated, or deleted account returns a problem object rather than a frozen snapshot.
⌘I