Content Hub External API

Columbia Sportswear's ContentHub image service for external customers. A read-only API with two GET operations: look up product imagery ("seasonal assets") for a single 10-digit material number, or page through assets in bulk over a modified-on date range with Skip/Take paging capped at a Take of 1000. Both operations filter on perspective, shot subtype and a modified-on window. Unauthorized callers are limited to Product Shot imagery older than a configured season. Authentication is an Azure API Management subscription key on every call. The OpenAPI 3.0.1 contract in this repo was exported from Columbia's own API Management instance and declares servers[] https://api.columbia.com/ContentHubExternal - Columbia's own domain - confirming first-party ownership.

Operations 2

GET /api/external/image/GetSeasonalAssets Assets Query. Un-Authorized users get access to only Product Shot older than the configured season #
GET /api/external/image/GetSeasonalAssetsBulk Bulk Assets Query. Un-Authorized users get access to only Product Shot older than the configured season #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/content-hub-external"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

columbia-sportswear-content-hub-external-openapi.json Raw ↑
{"openapi":"3.0.1","info":{"title":"Content Hub External API","description":"Content Hub External API","version":"1.0"},"servers":[{"url":"https://api.columbia.com/ContentHubExternal"}],"paths":{"/api/external/image/GetSeasonalAssets":{"get":{"tags":["ExternalImage"],"summary":"Assets Query. Un-Authorized users get access to only Product Shot older than the configured season","description":"Sample request:\r\n\r\n    GET /GetSeasonalAssets?MaterialNumber=1442362613","operationId":"get-api-external-image-getseasonalassets-materialnumber-materialnumber","parameters":[{"name":"MaterialNumber","in":"query","description":"10 Didgit product number","required":true,"schema":{"type":"string"},"example":1442362613},{"name":"Perspective","in":"query","description":"","schema":{"type":"string"},"example":"f"},{"name":"SubType","in":"query","description":"","schema":{"type":"string"},"example":"On Model"},{"name":"ModifiedOnStartRange","in":"query","description":"","schema":{"type":"string","format":"date-time"},"example":"2022-04-01T12:00:00.0000000+00:00"},{"name":"ModifiedOnEndRange","in":"query","description":"","schema":{"type":"string","format":"date-time"},"example":"2022-04-31T23:59:59Z"}],"responses":{"200":{"description":"Returns the Assets"},"400":{"description":"Material Number is required"},"500":{"description":"Unexpected Exception"}}}},"/api/external/image/GetSeasonalAssetsBulk":{"get":{"tags":["ExternalImage"],"summary":"Bulk Assets Query. Un-Authorized users get access to only Product Shot older than the configured season","description":"Sample request:\r\n\r\n    GET /GetSeasonalAssetsBulk?Skip=300&Take=100","operationId":"get-api-external-image-getseasonalassetsbulk","parameters":[{"name":"Perspective","in":"query","description":"","schema":{"type":"string"},"example":"f"},{"name":"SubType","in":"query","description":"","schema":{"type":"string"},"example":"On Model"},{"name":"ModifiedOnStartRange","in":"query","description":"","schema":{"type":"string","format":"date-time"},"example":"2022-04-01T12:00:00.0000000+00:00"},{"name":"ModifiedOnEndRange","in":"query","description":"","schema":{"type":"string","format":"date-time"},"example":"2022-04-31T23:59:59Z"},{"name":"Skip","in":"query","description":"","schema":{"type":"integer","format":"int32","default":0}},{"name":"Take","in":"query","description":"","schema":{"type":"integer","format":"int32","default":100}}],"responses":{"200":{"description":"Returns the Product Shot Assets"},"400":{"description":"Maximum Take size is 1000"},"500":{"description":"Unexpected Exception"}}}}},"components":{"securitySchemes":{"apiKeyHeader":{"type":"apiKey","name":"Ocp-Apim-Subscription-Key","in":"header"},"apiKeyQuery":{"type":"apiKey","name":"subscription-key","in":"query"}}},"security":[{"apiKeyHeader":[]},{"apiKeyQuery":[]}]}