# Getty Images Integration via LowCodeAPI

**Last Updated**: February 10, 2026

## Overview
Stock images and media

**Categories:**
- {'id': 'media-assets', 'name': 'Media & Assets', 'description': 'Stock photos, images, videos, and media asset services', 'priority': 16}

## Base Endpoint
https://api.lowcodeapi.com/gettyimages

**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`

## Authentication
**Type:** TOKEN

**Official Documentation:** https://developers.gettyimages.com/api/

## URL Format (Important)

LowCodeAPI supports two URL formats. **Always try the New Format first**, then fall back to Old Format if needed.

### New Format (Priority)
- Path parameters stay in the URL path
- Do NOT include path parameters as query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/{id}?api_token=XXX`

### Old Format (Fallback)
- Path parameters become query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/id?id={id}&api_token=XXX`

### Decision Flow for AI Agents
1. Always use **New Format** first - keep path parameters in the URL path
2. If you get a 404 or error, try **Old Format** with sanitized path
3. Log which format worked for future requests to this provider

## API Categories

## Common Endpoints

### Search for affiliate images

**Method:** GET
**LowCodeAPI Path:** /v3/affiliates/search/images

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/images?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/images?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| phrase | string |  |
| style | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/images?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/affiliates/search/images

### Search for affiliate videos

**Method:** GET
**LowCodeAPI Path:** /v3/affiliates/search/videos

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/videos?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/videos?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| phrase | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/affiliates/search/videos?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/affiliates/search/videos

### Search for images by a photographer

**Method:** GET
**LowCodeAPI Path:** /v3/artists/images

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/artists/images?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/artists/images?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| artist_name | string |  |
| fields | array |  |
| page | integer |  |
| page_size | integer |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/artists/images?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/artists/images

### Search for videos by a photographer

**Method:** GET
**LowCodeAPI Path:** /v3/artists/videos

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/artists/videos?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/artists/videos?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| artist_name | string |  |
| fields | array |  |
| page | integer |  |
| page_size | integer |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/artists/videos?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/artists/videos

### Get asset change notifications.

**Method:** PUT
**LowCodeAPI Path:** /v3/asset-changes/change-sets

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| batch_size | integer |  |
| channel_id | integer |  |

**Example Request (New Format):**

```bash
curl -X PUT 'https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/asset-changes/change-sets

### Confirm asset change notifications.

**Method:** DELETE
**LowCodeAPI Path:** /v3/asset-changes/change-sets/{change-set-id}

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets/{change-set-id}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets/change-set-id?change-set-id={change-set-id}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| change-set-id | integer |  |

**Example Request (New Format):**

```bash
curl -X DELETE 'https://api.lowcodeapi.com/gettyimages/v3/asset-changes/change-sets/{change-set-id}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/asset-changes/change-sets/change-set-id

### Get a list of asset change notification channels.

**Method:** GET
**LowCodeAPI Path:** /v3/asset-changes/channels

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/channels?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-changes/channels?api_token=YOUR_API_TOKEN

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/asset-changes/channels?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/asset-changes/channels

### Endpoint for acquiring extended licenses with iStock credits for an asset.

**Method:** POST
**LowCodeAPI Path:** /v3/asset-licensing/{assetId}

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-licensing/{assetId}?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-licensing/assetid?assetId={assetId}&api_token=YOUR_API_TOKEN

**Path Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| assetId | string |  |

**Request Body:**

| Field | Type | Description |
|-------|------|-------------|
| extended_licenses | array |  |
| use_team_credits | boolean |  |

**Example Request (New Format):**

```bash
curl -X POST 'https://api.lowcodeapi.com/gettyimages/v3/asset-licensing/{assetId}?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/asset-licensing/assetid

### Get asset send events

**Method:** GET
**LowCodeAPI Path:** /v3/asset-management/assets/send-events

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-management/assets/send-events?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/asset-management/assets/send-events?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| event_count | integer |  |
| last_offset | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/asset-management/assets/send-events?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/asset-management/assets/send-events

### Get all boards that the user participates in

**Method:** GET
**LowCodeAPI Path:** /v3/boards

**New Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/boards?api_token=YOUR_API_TOKEN

**Old Format URL:**
https://api.lowcodeapi.com/gettyimages/v3/boards?api_token=YOUR_API_TOKEN

**Query Parameters:**

| Parameter | Type | Description |
|-----------|------|-------------|
| board_relationship | string |  |
| page | integer |  |
| pageSize | integer |  |
| sort_order | string |  |

**Example Request (New Format):**

```bash
curl -X GET 'https://api.lowcodeapi.com/gettyimages/v3/boards?api_token=YOUR_API_TOKEN'
```

**Official Documentation:** https://developers.gettyimages.com/api/docs/v3/boards


## Usage Examples

### Example 1: Basic API Request (New Format)

Making a simple GET request to retrieve resources:

```bash
# Get a list of resources - no path parameters needed
curl -X GET "https://api.lowcodeapi.com/gettyimages/endpoint?api_token=YOUR_API_TOKEN"
```

### Example 2: Request with Path Parameters (New Format)

Retrieving a specific resource using its ID:

```bash
# Get specific resource by ID - replace RESOURCE_ID with actual ID from previous response
curl -X GET "https://api.lowcodeapi.com/gettyimages/endpoint/{RESOURCE_ID}?api_token=YOUR_API_TOKEN"
# Note: RESOURCE_ID typically comes from a previous list request or from the provider dashboard
```

### Example 3: POST Request with Body (New Format)

Creating a new resource:

```bash
# Create a new resource
curl -X POST "https://api.lowcodeapi.com/gettyimages/endpoint?api_token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"field": "value", "another_field": "another_value"}'
```

## Error Handling

LowCodeAPI returns standard HTTP status codes. Common errors:

| Status Code | Description |
|-------------|-------------|
| 200 | Success - Request completed successfully |
| 400 | Bad Request - Invalid parameters or request body |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Endpoint or resource doesn't exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Provider API error |

All error responses include error details:

```json
{
  "data": {
    "error": {
      "message": "Error description",
      "code": "ERROR_CODE"
    }
  }
}
```

## Complete Endpoint Reference

| Endpoint | Method | Category |
|----------|--------|----------|
| Search for affiliate images | GET | AffiliateSearch |
| Search for affiliate videos | GET | AffiliateSearch |
| Search for images by a photographer | GET | Artists |
| Search for videos by a photographer | GET | Artists |
| Get asset change notifications. | PUT | AssetChanges |
| Confirm asset change notifications. | DELETE | AssetChanges |
| Get a list of asset change notification channels. | GET | AssetChanges |
| Endpoint for acquiring extended licenses with iSto... | POST | AssetLicensing |
| Get asset send events | GET | AssetManagement |
| Get all boards that the user participates in | GET | Boards |
| Create a new board | POST | Boards |
| Get assets and metadata for a specific board | GET | Boards |
| Delete a board | DELETE | Boards |
| Update a board | PUT | Boards |
| Add assets to a board | PUT | Boards |
| Remove assets from a board | DELETE | Boards |
| Add an asset to a board | PUT | Boards |
| Remove an asset from a board | DELETE | Boards |
| Get comments from a board | GET | Boards |
| Add a comment to a board | POST | Boards |
| Delete a comment from a board | DELETE | Boards |
| Gets collections applicable for the customer. | GET | Collections |
| Gets countries codes and names. | GET | Countries |
| Returns information about the current user. | GET | Customers |
| Returns information about a customer's downloaded ... | GET | Downloads |
| Download an image | POST | Downloads |
| Download a video | POST | Downloads |
| Get metadata for multiple events | GET | Events |
| Get metadata for a single event | GET | Events |
| Get metadata for multiple images by supplying mult... | GET | Images |
| Get metadata for a single image by supplying one i... | GET | Images |
| Returns information about a customer's download hi... | GET | Images |
| Retrieve creative images from the same series | GET | Images |
| Retrieve similar images | GET | Images |
| Get order metadata | GET | Orders |
| Get Products | GET | Products |
| Get Previously Purchased Images and Video | GET | Purchases |
| Search for events | GET | Search |
| Search for creative images only | GET | Search |
| Search for creative images based on url | GET | Search |
| Search for editorial images only | GET | Search |
| Search for creative videos | GET | Search |
| Search for creative videos based on url | GET | Search |
| Search for editorial videos | GET | Search |
| Upload image for use by the search creative images... | PUT | Search |
| Search for both creative and editorial images - **... | GET | Search |
| Report usage of assets via a batch format. | PUT | Usage |
| Get metadata for multiple videos by supplying mult... | GET | Videos |
| Get metadata for a single video by supplying one v... | GET | Videos |
| Returns information about a customer's download hi... | GET | Videos |
| Retrieve creative videos from the same series | GET | Videos |
| Retrieve similar videos | GET | Videos |

## API Definition Endpoints

You can fetch the complete API specification for this provider:

**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/gettyimages/openapi'
```

**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/gettyimages/definition'
```

## Response Format

All responses are wrapped in a `data` key:

```json
{
  "data": {
    // Actual response from provider (object or array)
  }
}
```