GET /avatars/generate
Búðu til einstakar mynd-slóðir fyrir prófílmyndir út frá frækjarna (eins og notandanafni eða tölvupósti). Skilar URL-slóðum frá þremur mismunandi þjónustum: DiceBear (17 listastílar, SVG/PNG), UI Avatars (byggt á upphafsstöfum) og RoboHash (vélmenni/skrímsli). Sami frækjarni framleiðir alltaf sömu prófílmyndina, sem gerir hann fullkominn fyrir sjálfgefin gildi notendasniða.
seed
nauðsynlegt
Seed string (username, email, any text)
style
valfrjálst
sjálfgefið: avataaars
DiceBear style name
size
valfrjálst
sjálfgefið: 200
Image size in pixels
| Nafn | Nauðsynlegt | Sjálfgefið | Lýsing |
|---|---|---|---|
seed |
Já | - | Seed string (username, email, any text) |
style |
Nei | avataaars | DiceBear style name |
size |
Nei | 200 | Image size in pixels |
curl "https://nordapi.ee/api/v1/avatars/generate?seed=john_doe"
curl "https://nordapi.ee/api/v1/avatars/generate?seed=john_doe"
curl "https://nordapi.ee/api/v1/avatars/generate?seed=jane&style=pixel-art&size=400"
curl "https://nordapi.ee/api/v1/avatars/generate?seed=user@example.com&style=bottts"
{
"data": {
"dicebear": "https://api.dicebear.com/9.x/avataaars/svg?seed=john_doe&size=200",
"dicebear_png": "https://api.dicebear.com/9.x/avataaars/png?seed=john_doe&size=200",
"robohash": "https://robohash.org/john_doe?size=200x200",
"robohash_monster": "https://robohash.org/john_doe?set=set2&size=200x200",
"robohash_robot_head": "https://robohash.org/john_doe?set=set3&size=200x200",
"seed": "john_doe",
"size": 200,
"style": "avataaars",
"ui_avatar": "https://ui-avatars.com/api/?name=john_doe&size=200&background=random&color=fff"
},
"success": true
}