# ImgBB

ImgBB is a free image hosting and sharing service that allows users to upload and share images easily.

- **Category:** images & design
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 2
- **Triggers:** 0
- **Slug:** `IMGBB`
- **Version:** 20260227_00

## Tools

### Get ImgBB API Key

**Slug:** `IMGBB_GET_API_KEY`

Tool to retrieve and validate the ImgBB API key. Use before making ImgBB API calls to ensure authentication is configured.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload Image to ImgBB

**Slug:** `IMGBB_UPLOAD_IMAGE`

Tool to upload an image to ImgBB. Use when you need to host an image and get back its URLs immediately.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Optional custom filename to use for the uploaded image. |
| `image` | string | Yes | Base64-encoded image string, remote URL, or raw file bytes (max 32 MB). Note: Local file paths are not supported; please provide base64-encoded data, a URL, or raw bytes instead. |
| `expiration` | integer | No | Optional auto-delete time in seconds (60–15552000). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
