instagram · fetch · accountsolari:read로그인한 SOLARI 계정이면 쓸 수 있어요.
solari fetch instagram account search
Find accounts on Instagram by name, live.
- MCP 도구
- solari_fetch_instagram_account_search
- CLI
- solari fetch instagram account search
- 권한
- solari:read로그인한 SOLARI 계정이면 쓸 수 있어요.로그인한 SOLARI 계정이면 쓸 수 있어요.
- Required plan
- Free
- Credit
- 0
개요
Ask Instagram itself for accounts matching a name or handle fragment. Catalog account search only knows tracked accounts; this finds the rest and tells you which ones are already tracked.
언제 쓰나 — When catalog account search returns nothing for a name, or you need the exact handle before ingesting it.
무엇이 나오나 — Up to 50 accounts in Instagram's order, with account_id on the ones already in the catalog.
파라미터
- querystring필수
- Name or handle fragment, with or without @.≤ 100 chars
응답
Response
- querystring
- The text the lookup ran on, without @.
- itemsobject[]
- Matching accounts, Instagram's order.
- foundinteger
- Accounts returned.
- trackedinteger
- How many carry an account_id.
items[]
- usernamestring
- Handle, lowercased.
- full_namestring | null
- Display name.
- is_verifiedboolean
- Verified badge.
- is_privateboolean
- Private account.
- profile_picture_urlstring | null
- Profile picture URL.
- account_iduuid | null
- SOLARI account id if already tracked; null means ingest it with fetch instagram account first.
예시
요청
$ solari fetch instagram account search query=innisfree응답 · 읽기 편하도록 긴 문자열과 반복되는 배열 항목을 줄였어요.
{
"query": "innisfree",
"items": [
{
"username": "innisfreeofficial",
"full_name": "innisfree official",
"is_verified": true,
"is_private": false,
"profile_picture_url": "https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg",
"account_id": "018cabce-14cc-7544-8890-7811ec33ef74"
},
{
"username": "innisfree_jp",
"full_name": "innisfree Japan",
"is_verified": false,
"is_private": false,
"profile_picture_url": null,
"account_id": null
}
],
"found": 2,
"tracked": 1
}MCP 호출로 쓰면
{
"name": "solari_fetch_instagram_account_search",
"arguments": {
"query": "innisfree"
}
}주의사항
- Nothing is stored. To bring an untracked hit into the catalog, run fetch instagram account with its username.
- Order and ranking are Instagram's, so the official account is not always first: check is_verified.
- No follower counts here; read them with catalog account profile once the account is tracked.