WorkRamp Content Catalog API

The Content Catalog API from WorkRamp — 1 operation(s) for content catalog.

Operations 1

GET /api/v1/content_catalog Get Content Catalog #

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/workramp-content-catalog-api"
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

workramp-content-catalog-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: api-settings Content Catalog API
  version: '1.0'
servers:
- url: https://app.workramp.com
security:
- sec0: []
tags:
- name: Content Catalog
paths:
  /api/v1/content_catalog:
    get:
      summary: Get Content Catalog
      description: Get your content catalog (a collection of all content in your WorkRamp instance)
      operationId: get-content-catalog
      parameters:
      - name: Authorization
        in: header
        schema:
          type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "[\n    {\n        \"folderName\": \"/Guide\",\n        \"universityName\": \"\",\n        \"universityDescription\": \"\",\n        \"universityFolder\": \"\",\n        \"pathName\": \"\",\n        \"pathDescription\": \"\",\n        \"itemType\": \"guide\",\n        \"itemName\": \"Sales Onboarding\",\n        \"itemDescription\": \"Sales is the best job.\",\n        \"itemLink\": \"http://app.workramp.test/admin/guides/34f4g45-f648-123s-92d0-2313\",\n        \"lastEditedDate\": \"2022-06-30T17:36:29.718Z\",\n        \"lastEditor\": \"John Doe\",\n        \"lastAssignedDate\": \"2022-06-27T18:38:21.811Z\",\n        \"numAssignments\": 1,\n        \"originalAuthor\": \"bethsamuels@example.com\",\n        \"createdDate\": \"2022-06-27T18:38:19.303Z\"\n    },\n    {\n        \"folderName\": \"/Path\",\n        \"universityName\": \"\",\n        \"universityDescription\": \"\",\n        \"universityFolder\": \"\",\n        \"pathName\": \"Learning More\",\n        \"pathDescription\": \"\",\n        \"itemType\": \"resource\",\n        \"itemName\": \"Arts\",\n        \"itemDescription\": \"\",\n        \"itemLink\": \"http://app.workramp.test/admin/resources/1s2dss-fdsf6-11ec-dsa-5e3d23\",\n        \"lastEditedDate\": \"2022-06-27T18:38:20.218Z\",\n        \"lastEditor\": \"Bruce Wayne\",\n        \"lastAssignedDate\": \"\",\n        \"numAssignments\": \"20\",\n        \"originalAuthor\": \"clarkkent@example.com\",\n        \"createdDate\": \"2022-04-13T14:18:30.403Z\"\n    },\n    {\n        \"folderName\": \"/Challenge\",\n        \"universityName\": \"\",\n        \"universityDescription\": \"\",\n        \"universityFolder\": \"\",\n        \"pathName\": \"\",\n        \"pathDescription\": \"\",\n        \"itemType\": \"challenge\",\n        \"itemName\": \"Challenge 101\",\n        \"itemDescription\": \"The hardest challenge ever\",\n        \"itemLink\": \"http://app.workramp.test/admin/challenges/12s42-d2df3-1fdec-6g4-d3f3f34f5\",\n        \"lastEditedDate\": \"2022-02-14T22:28:09.048Z\",\n        \"lastEditor\": \"John Wick\",\n        \"lastAssignedDate\": \"2022-04-27T18:38:26.888Z\",\n        \"numAssignments\": 2,\n        \"originalAuthor\": \"brucewayne@example.com\",\n        \"createdDate\": \"2021-01-27T15:17:20.775Z\"\n    }\n]"
              schema:
                type: array
                items:
                  type: object
                  properties:
                    folderName:
                      type: string
                      example: /Guide
                    universityName:
                      type: string
                      example: ''
                    universityDescription:
                      type: string
                      example: ''
                    universityFolder:
                      type: string
                      example: ''
                    pathName:
                      type: string
                      example: ''
                    pathDescription:
                      type: string
                      example: ''
                    itemType:
                      type: string
                      example: guide
                    itemName:
                      type: string
                      example: Sales Onboarding
                    itemDescription:
                      type: string
                      example: Sales is the best job.
                    itemLink:
                      type: string
                      example: http://app.workramp.test/admin/guides/34f4g45-f648-123s-92d0-2313
                    lastEditedDate:
                      type: string
                      example: '2022-06-30T17:36:29.718Z'
                    lastEditor:
                      type: string
                      example: John Doe
                    lastAssignedDate:
                      type: string
                      example: '2022-06-27T18:38:21.811Z'
                    numAssignments:
                      type: integer
                      example: 1
                      default: 0
                    originalAuthor:
                      type: string
                      example: bethsamuels@example.com
                    createdDate:
                      type: string
                      example: '2022-06-27T18:38:19.303Z'
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: 'curl https://app.workramp.com/api/v1/content_catalog \

            -H "Authorization: Bearer ACCESS_TOKEN" \

            -H "Content-type: application/json"'
        samples-languages:
        - curl
      tags:
      - Content Catalog
components:
  securitySchemes:
    sec0:
      type: apiKey
      name: Authorization
      in: header
      x-bearer-format: bearer
      x-default: ACCESS_TOKEN
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: true
x-readme-fauxas: true