Getty Images Changes API
The Changes API from Getty Images — 3 operation(s) for changes.
The Changes API from Getty Images — 3 operation(s) for changes.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/getty-images-changes-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Getty Images Changes API
version: '3'
description: '
Developer resources for the Getty Images API including SDK, documentation,
release notes, status, notifications and sample code.'
servers:
- url: https://api.gettyimages.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- Api-Key: []
- OAuth2: []
tags:
- name: Changes
paths:
/v3/asset-changes/change-sets:
put:
tags:
- Changes
summary: Get asset change notifications.
description: "# Asset Changes\n\nGet notifications about new, updated or deleted assets for a specific channel.\n\n## Quickstart\n\nYou'll need an API key and an access token to use this resource. \n\nMaximum batch size is 2200.\n\nChange-sets must be confirmed before a new batch of notifications can be retrieved from this endpoint. Use the DELETE asset-changes/change-sets/{change-set-id} endpoint to confirm reciept of these notifications.\n\nValues returned for asset_type include Image, Film, and null. Values returned for asset_lifecycle include New, Update, and Delete.\n\nDelete notifications may be provided for asset ids that have not previously been received as New or Update notifications. Delete notifications may return null for the asset_type.\n\nIf there are no notifications in the channel an empty response body will be returned.\n\nNotifications older than 60 days will be removed from partner channels.\n"
parameters:
- name: channel_id
in: query
description: Specifies the id of the channel for the asset data. Valid channel ids can be found in the results of the Get Partner Channel query.
schema:
type: integer
description: Specifies the id of the channel for the asset data. Valid channel ids can be found in the results of the Get Partner Channel query.
format: int32
- name: batch_size
in: query
description: Specifies the number of assets to return. The default is 2200; maximum is 2200.
schema:
type:
- integer
- 'null'
description: Specifies the number of assets to return. The default is 2200; maximum is 2200.
format: int32
responses:
'200':
description: Success - Channel contains unconfirmed asset change notifications
content:
application/json:
schema:
$ref: '#/components/schemas/AssetChanges'
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/AssetChanges'
'400':
description: InvalidChannelIdException
'403':
description: Your access token does not authorize access to this resource
'404':
description: The channel you specified does not exist
/v3/asset-changes/change-sets/{change-set-id}:
delete:
tags:
- Changes
summary: Confirm asset change notifications.
description: '# Delete Asset Changes
Confirm asset changes acknowledges receipt of asset changes (from the PUT asset-changes endpoint).
## Quickstart
You''ll need an API key and an access token to use this resource.
Use the change_set_id from the PUT asset-changes/change-sets endpoint to confirm receipt of notifications.
'
parameters:
- name: change-set-id
in: path
description: Specify the change-set-id associated with a transaction resource whose receipt you want to confirm.
required: true
schema:
type: integer
description: Specify the change-set-id associated with a transaction resource whose receipt you want to confirm.
format: int64
responses:
'200':
description: Success
'400':
description: InvalidChangeSetId
'403':
description: Your access token does not authorize access to this resource
'404':
description: Transaction was not found
/v3/asset-changes/channels:
get:
tags:
- Changes
summary: Get a list of asset change notification channels.
description: '# Get Partner Channels
Retrieves the channel data for the partner. This data can be used to populate the channel_id parameter in the Put Asset Changes query.
## Quickstart
You''ll need an API key and an access token to use this resource.
Partners who have a channel that has been removed should contact their sales representative to be set up again.
'
responses:
'200':
description: Success
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Channel'
'403':
description: UnauthorizedToAccessResource
'404':
description: ChannelsNotFound
components:
schemas:
Channel:
type: object
properties:
ChannelId:
type: integer
format: int32
AssetFamily:
$ref: '#/components/schemas/AssetFamily'
AssetChangeType:
type:
- string
- 'null'
CreateDateUtc:
type: string
format: date-time
NotificationCount:
type: integer
format: int32
AssetType:
$ref: '#/components/schemas/AssetType'
OldestChangeNotificationDateUtc:
type: string
format: date-time
Metadata:
type:
- string
- 'null'
additionalProperties: false
AssetChanges:
type: object
properties:
change_set_id:
type:
- string
- 'null'
description: Contains the identifier for the change-set resource. Passed into ConfirmAssetChanges requests to confirm receipt of the asset changes in the response.
changed_assets:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/ChangedAssetDetail'
description: Contains a list of ChangedAssetList results for the query.
additionalProperties: false
ChangedAssetDetail:
type: object
properties:
asset_changed_utc_datetime:
type: string
description: Contains the date of the asset change.
format: date-time
asset_lifecycle:
type:
- string
- 'null'
description: Contains the type of change this asset change is. (i.e. "New," "Updated" or "Deleted")
asset_type:
type:
- string
- 'null'
description: Contains the type of asset this asset change is (i.e. "Image").
id:
type:
- string
- 'null'
description: Contains the Id for the asset change.
uri:
type:
- string
- 'null'
description: Contains the asset download URL for assets with an AssetLifecycle of "New."
additionalProperties: false
AssetFamily:
enum:
- NotSet
- Editorial
- Creative
- Both
type: string
AssetType:
enum:
- NotSet
- Image
- Film
- Music
type: string
securitySchemes:
Api-Key:
type: apiKey
name: Api-Key
in: header
OAuth2:
type: oauth2
flows:
password:
tokenUrl: https://api.gettyimages.com/v4/oauth2/token
refreshUrl: https://api.gettyimages.com/v4/oauth2/token
scopes: {}
clientCredentials:
tokenUrl: https://api.gettyimages.com/v4/oauth2/token
scopes: {}
authorizationCode:
authorizationUrl: https://api.gettyimages.com/v4/oauth2/auth
tokenUrl: https://api.gettyimages.com/v4/oauth2/token
refreshUrl: https://api.gettyimages.com/v4/oauth2/token
scopes: {}