Abstract API Avatars API

User avatar generation operations

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/email-reputation-breach-info-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/phone-intelligence-phone-country-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/ip-geolocation-currency-info-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/ip-intelligence-asn-info-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/company-enrichment-company-enrichment-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/exchange-rates-convert-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/public-holidays-holiday-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/timezones-convert-time-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/vat-validation-vat-calculate-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/iban-validation-iban-validation-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/image-processing-image-processing-response-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/web-scraping-web-scraping-response-schema.json

Other Resources

🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/email-reputation-breach-info-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/phone-intelligence-phone-country-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/ip-geolocation-currency-info-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/ip-intelligence-asn-info-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/company-enrichment-company-enrichment-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/exchange-rates-convert-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/public-holidays-holiday-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/timezones-convert-time-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/vat-validation-vat-calculate-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/iban-validation-iban-validation-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/image-processing-image-processing-response-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/examples/web-scraping-web-scraping-response-example.json
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-company-to-screenshot-and-avatar-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-currency-live-and-convert-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-email-to-company-enrichment-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-iban-and-company-verification-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-ip-geolocation-to-currency-conversion-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-ip-geolocation-to-timezone-holidays-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-ip-security-and-geolocation-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-phone-to-timezone-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-screenshot-scrape-and-process-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/arazzo/abstract-api-vat-validation-to-rates-and-calculation-workflow.yml

OpenAPI Specification

abstract-api-avatars-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Abstract API Avatars API
  description: Create highly customizable avatar images using a person's name or initials. Supports color, font, and size customization for user profile images.
  version: 1.0.0
  contact:
    url: https://www.abstractapi.com/
  x-generated-from: documentation
servers:
- url: https://avatars.abstractapi.com/v1
  description: Avatars API v1
security:
- apiKey: []
tags:
- name: Avatars
  description: User avatar generation operations
paths:
  /:
    get:
      operationId: generateAvatar
      summary: Abstract API Generate Avatar
      description: Generate a customizable avatar image using a person's name or initials with configurable colors, fonts, and sizes.
      tags:
      - Avatars
      parameters:
      - name: api_key
        in: query
        required: true
        description: Your unique API key for the Avatars API.
        schema:
          type: string
        example: abc123def456
      - name: name
        in: query
        required: true
        description: Full name or initials to use for the avatar.
        schema:
          type: string
        example: Jane Smith
      - name: size
        in: query
        required: false
        description: Size of the avatar in pixels (square). Defaults to 128.
        schema:
          type: integer
        example: 128
      - name: color
        in: query
        required: false
        description: Text color as a hex code (without
        schema:
          type: string
        example: FFFFFF
      - name: background_color
        in: query
        required: false
        description: Background color as a hex code (without
        schema:
          type: string
        example: 4F46E5
      - name: font_size
        in: query
        required: false
        description: Font size as a fraction of the avatar size (0.1 to 0.9).
        schema:
          type: number
        example: 0.5
      - name: char_count
        in: query
        required: false
        description: Number of characters to use from the name. Defaults to 2.
        schema:
          type: integer
        example: 2
      responses:
        '200':
          description: Avatar image
          content:
            image/png:
              schema:
                type: string
                format: binary
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          example: The provided API key is invalid
        error:
          type: string
          example: invalid_api_key
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: api_key