The Avatars service aims to help you complete everyday tasks related to your app image, icons, and avatars.
The Avatars service allows you to fetch country flags, browser icons, payment methods logos, remote websites favicons, generate QR codes, and manipulate remote image URLs.
All endpoints in this service allow you to resize, crop, and change the output image quality for maximum performance and visibility in your app.
https://cloud.appwrite.io/v1
Get browser icon
You can use this endpoint to show different browser icons to your users. The code argument receives the browser code as it appears in your user GET /account/sessions endpoint. Use width, height and quality arguments to change the output settings.
When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
Request
code requiredBrowser Code.
width Image width. Pass an integer between 0 to 2000. Defaults to 100.
height Image height. Pass an integer between 0 to 2000. Defaults to 100.
quality Image quality. Pass an integer between 0 to 100. Defaults to 100.
Response
200
GET /avatars/browsers/{code}
import { Client, Avatars, Browser } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getBrowser(
Browser.AvantBrowser, // code
0, // width (optional)
0, // height (optional)
0 // quality (optional)
);
console.log(result);
Get credit card icon
The credit card endpoint will return you the icon of the credit card provider you need. Use width, height and quality arguments to change the output settings.
When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
Request
code requiredCredit Card Code. Possible values: amex, argencard, cabal, cencosud, diners, discover, elo, hipercard, jcb, mastercard, naranja, targeta-shopping, union-china-pay, visa, mir, maestro.
width Image width. Pass an integer between 0 to 2000. Defaults to 100.
height Image height. Pass an integer between 0 to 2000. Defaults to 100.
quality Image quality. Pass an integer between 0 to 100. Defaults to 100.
Response
200
GET /avatars/credit-cards/{code}
import { Client, Avatars, CreditCard } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getCreditCard(
CreditCard.AmericanExpress, // code
0, // width (optional)
0, // height (optional)
0 // quality (optional)
);
console.log(result);
Get favicon
Use this endpoint to fetch the favorite icon (AKA favicon) of any remote website URL.
This endpoint does not follow HTTP redirects.
Request
url requiredWebsite URL which you want to fetch the favicon from.
Response
200
GET /avatars/favicon
import { Client, Avatars } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getFavicon(
'https://example.com' // url
);
console.log(result);
Get country flag
You can use this endpoint to show different country flags icons to your users. The code argument receives the 2 letter country code. Use width, height and quality arguments to change the output settings. Country codes follow the ISO 3166-1 standard.
When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
Request
code requiredCountry Code. ISO Alpha-2 country code format.
width Image width. Pass an integer between 0 to 2000. Defaults to 100.
height Image height. Pass an integer between 0 to 2000. Defaults to 100.
quality Image quality. Pass an integer between 0 to 100. Defaults to 100.
Response
200
GET /avatars/flags/{code}
import { Client, Avatars, Flag } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getFlag(
Flag.Afghanistan, // code
0, // width (optional)
0, // height (optional)
0 // quality (optional)
);
console.log(result);
Get image from URL
Use this endpoint to fetch a remote image URL and crop it to any image size you want. This endpoint is very useful if you need to crop and display remote images in your app or in case you want to make sure a 3rd party image is properly served using a TLS protocol.
When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 400x400px.
This endpoint does not follow HTTP redirects.
Request
url requiredImage URL which you want to crop.
width Resize preview image width, Pass an integer between 0 to 2000. Defaults to 400.
height Resize preview image height, Pass an integer between 0 to 2000. Defaults to 400.
Response
200
GET /avatars/image
import { Client, Avatars } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getImage(
'https://example.com', // url
0, // width (optional)
0 // height (optional)
);
console.log(result);
Get user initials
Use this endpoint to show your user initials avatar icon on your website or app. By default, this route will try to print your logged-in user name or email initials. You can also overwrite the user name if you pass the 'name' parameter. If no name is given and no user is logged, an empty avatar will be returned.
You can use the color and background params to change the avatar colors. By default, a random theme will be selected. The random theme will persist for the user's initials when reloading the same theme will always return for the same initials.
When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
Request
name Full Name. When empty, current user name or email will be used. Max length: 128 chars.
width Image width. Pass an integer between 0 to 2000. Defaults to 100.
height Image height. Pass an integer between 0 to 2000. Defaults to 100.
background Changes background color. By default a random color will be picked and stay will persistent to the given name.
Response
200
GET /avatars/initials
import { Client, Avatars } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getInitials(
'<NAME>', // name (optional)
0, // width (optional)
0, // height (optional)
'' // background (optional)
);
console.log(result);
Get QR code
Converts a given plain text to a QR code image. You can use the query parameters to change the size and style of the resulting image.
Request
text requiredPlain text to be converted to QR code image.
size QR code size. Pass an integer between 1 to 1000. Defaults to 400.
margin Margin from edge. Pass an integer between 0 to 10. Defaults to 1.
download Return resulting image with 'Content-Disposition: attachment ' headers for the browser to start downloading it. Pass 0 for no header, or 1 for otherwise. Default value is set to 0.
Response
200
GET /avatars/qr
import { Client, Avatars } from "appwrite";
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
const avatars = new Avatars(client);
const result = avatars.getQR(
'<TEXT>', // text
1, // size (optional)
0, // margin (optional)
false // download (optional)
);
console.log(result);