Emory University api_key API

api_key resource

Operations 5

GET /api_key List API keys for a given user. #
POST /api_key Create a new API key. #
POST /api_key/token Create a token from an API key. #
DELETE /api_key/{id} Delete an API key. #
PUT /api_key/{id} Update an API key. #

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/emory-api-key-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

emory-api-key-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Girder REST API (Emory Digital Slide Archive) API Key API
  version: 3.2.14
  description: OpenAPI 3.0 conversion of the Girder REST API powering the Emory Digital Slide Archive (computablebrain). Converted faithfully from the live Swagger 2.0 document at https://computablebrain.emory.edu/api/v1/describe.
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.txt
servers:
- url: https://computablebrain.emory.edu/api/v1
tags:
- description: api_key resource
  name: api_key
paths:
  /api_key:
    get:
      description: Only site administrators may list keys for other users. If no userId parameter is passed, lists keys for the current user.
      operationId: api_key_listKeys_api_key
      parameters:
      - name: userId
        in: query
        required: false
        description: ID of the user whose keys to list.
        schema:
          type: string
      - name: limit
        in: query
        required: false
        description: Result set size limit.
        schema:
          type: integer
          format: int32
          default: 50
      - name: offset
        in: query
        required: false
        description: Offset into result set.
        schema:
          type: integer
          format: int32
          default: 0
      - name: sort
        in: query
        required: false
        description: Field to sort the result set by.
        schema:
          type: string
          default: name
      - name: sortdir
        in: query
        required: false
        description: 'Sort order: 1 for ascending, -1 for descending.'
        schema:
          type: integer
          format: int32
          enum:
          - 1
          - -1
          default: 1
      responses:
        '200':
          description: Success
        '400':
          description: A parameter was invalid.
      summary: List API keys for a given user.
      tags:
      - api_key
    post:
      operationId: api_key_createKey_post_api_key
      parameters:
      - name: name
        in: query
        required: false
        description: Name for the API key.
        schema:
          type: string
          default: ''
      - name: scope
        in: query
        required: false
        description: JSON list of scopes for this key.
        schema:
          type: string
      - name: tokenDuration
        in: query
        required: false
        description: Max number of days tokens created with this key will last.
        schema:
          type: string
      - name: active
        in: query
        required: false
        description: Whether the key is currently active.
        schema:
          type: boolean
          default: true
      - name: targetUserId
        in: query
        required: false
        description: Id of user to apply the key to
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: A parameter was invalid.
      summary: Create a new API key.
      tags:
      - api_key
  /api_key/token:
    post:
      operationId: api_key_createToken_post_token
      parameters:
      - name: key
        in: query
        required: true
        description: The API key.
        schema:
          type: string
      - name: duration
        in: query
        required: false
        description: Number of days that the token should last.
        schema:
          type: number
          format: float
      responses:
        '200':
          description: Success
        '400':
          description: A parameter was invalid.
      summary: Create a token from an API key.
      tags:
      - api_key
  /api_key/{id}:
    delete:
      operationId: api_key_deleteKey_delete_id
      parameters:
      - name: id
        in: path
        required: true
        description: The ID of the API key to delete.
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: A parameter was invalid.
      summary: Delete an API key.
      tags:
      - api_key
    put:
      operationId: api_key_updateKey_put_id
      parameters:
      - name: id
        in: path
        required: true
        description: The ID of the API key.
        schema:
          type: string
      - name: name
        in: query
        required: false
        description: Name for the key.
        schema:
          type: string
      - name: scope
        in: query
        required: false
        description: JSON list of scopes for this key.
        schema:
          type: string
          default: []
      - name: tokenDuration
        in: query
        required: false
        description: Max number of days tokens created with this key will last.
        schema:
          type: string
      - name: active
        in: query
        required: false
        description: Whether the key is currently active.
        schema:
          type: boolean
      responses:
        '200':
          description: Success
        '400':
          description: A parameter was invalid.
      summary: Update an API key.
      tags:
      - api_key
components:
  securitySchemes:
    Girder-Token:
      in: header
      name: Girder-Token
      type: apiKey