avatarInfo
Returns the Second Life avatar details.
Bot.avatarInfo("0b65a122-8f77-64fe-5b2a-225d4c490d9c").then(function(res) {
console.log("Avatar info:", res);
});Or using async/await:
let res = await Bot.avatarInfo("0b65a122-8f77-64fe-5b2a-225d4c490d9c");
console.log("Avatar info:", res);Input
Variable | Required | Description |
|---|---|---|
uuid | yes | UUID of the avatar to query |
Output
Field | Type | Description |
|---|---|---|
| bool | true if command completed successfully |
| string | error string if command has failed |
| string | Profile text |
| string | SL birth date, |
| string |
|
| string | Profile image UUID |
| string | First life image UUID |
| string | First life text |
| string |
|
| string |
|
| string | Partner UUID (zero UUID if none) |
| string |
|
| string |
|
| string | Profile URL |
Limitations
This API command is not intended for a mass parsing. It takes about 2-3 seconds to complete, and repetitive requests (roughly more than 1 per 3 seconds) may get throttled.
Also, multiple non-stop requests may cause bot to relog.