action shutterstock_list_custom_instruments { label: "List computer audio instruments" description: "This endpoint lists the instruments that you can include in computer audio. If you specify more than one search parameter, the API uses an AND condition." provider: shutterstock method: GET path: "/v2/ai/audio/instruments" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "string" } } name: { type: "string" } page: { type: "integer" } per_page: { type: "integer" } tag: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Image search results" properties: { data: { type: "array" description: "List of instrumnets" items: { type: "object" description: "Information about an musical instrument" properties: { id: { type: "string" description: "The id of the instrument" } name: { type: "string" description: "Name of the instrument" } previews: { type: "array" description: "Preview of the instrument" items: { type: "object" description: "Preview information" properties: { content_type: { type: "string" description: "Content type of the preview, currently audio/mp3" enum: ["audio/mp3"] } url: { type: "string" description: "Url of the instrument's preview file" } } } } tags: { type: "array" description: "List of tags" items: { type: "string" } } } } } page: { type: "integer" description: "Current page that is returned" } per_page: { type: "integer" description: "Number of results per page" } } } }