# 1. find the service id
socialgo services search "instagram followers"
# 2. place the order
socialgo order create --service 1423 --link https://instagram.com/yourhandle --quantity 1000
# 3. track it
socialgo order status 90871
端到端脚本化
给任意命令加 --json,管道进 jq。这里脚本挑出最便宜的匹配服务,然后下单,无需点击:
# pick the cheapest matching service, then order — with jq
id=$(socialgo services search "instagram followers" --json \
| jq -r 'sort_by(.rate) | .[0].id')
socialgo order create --service "$id" \
--link https://instagram.com/yourhandle --quantity 1000 --json
退出码与 JSON
每条命令成功返回 0,失败返回非零码,你可以在 CI 流水线和 shell 脚本里串联调用。给任意命令加 --json,即可获得机器可读输出,管道进 jq 之类的工具,或直接喂回给智能体。