Qure.ai Initiate Computation API

The Initiate Computation API from Qure.ai — 1 operation(s) for initiate computation.

Operations 1

GET /compute/{SeriesInstanceUID} Initiate Computation. #

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/qure.ai-initiate-computation-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

qure.ai-initiate-computation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Qure.ai Initiate Computation API
  version: 3.1.33
  description: 'Operations tagged Initiate Computation across 2 of this provider''s published API definitions: qure.ai-platform-api-xray-ct-openapi.yml, qure.ai-platform-api-xray-v2-er-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: BASE_URL
  description: The BASE_URL is the root address for all your API requests. You must append this to all requests to the Platform API. To obtain this, contact support@qure.ai.
security:
- TokenAuth: []
tags:
- name: Initiate Computation
paths:
  /compute/{SeriesInstanceUID}:
    get:
      summary: Initiate Computation.
      operationId: initiateComputation
      tags:
      - Initiate Computation
      parameters:
      - in: path
        name: SeriesInstanceUID
        required: true
        schema:
          type: string
        description: The unique identifier for the series to initiate computation on.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                recompute:
                  type: boolean
      x-codeSamples:
      - lang: cURL
        label: cURL
        source: 'curl -X GET \\

          -L ''Base_URL/compute/<SeriesInstanceUID>'' \\

          -H ''Authorization: Token <PASTE_YOUR_TOKEN>'' \\

          -H ''Source: <PASTE_YOUR_SOURCE>''

          '
      - lang: Python
        label: Python
        source: "import requests\nimport pydicom\n\n# To fetch SeriesInstanceUID using pydicom \n\nseries_instance_uid = pydicom.read_file('<path/to/your/dicom_file.dcm>').SeriesInstanceUID\n\nurl = f\"Base_URL/compute/{series_instance_uid}\"\n\n# Headers, including the Authorization token and Source\nheaders = {\n    'Authorization': 'Token <PASTE_YOUR_TOKEN>',\n    'Source': '<PASTE_YOUR_SOURCE>',\n}\n# Perform the GET request\nresponse = requests.get(url, headers=headers)\n\n# Print the response text\nprint(response.text)\n"
      responses:
        '200':
          description: Computation initiated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A message that validates the request based on the response status code.
                    example: series_instance_uid successfully pushed for computation!
                  success:
                    type: boolean
                    example: true
        '304':
          description: The DICOMS are already pushed for computation.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A message that validates the request based on the response status code.
                    example: series_instance_uid was already pushed for computation!
                  success:
                    type: boolean
                    example: true
        '401':
          description: The Authorization header has either no token or a wrong token.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A message that validates the request based on the response status code.
                    example: Invalid token header. No credentials provided.
                  next:
                    type: string
                    description: Inidcates the next step to resolve the issue.
                    example: /accounts/login/
                  authenticated:
                    type: boolean
                    description: Indicates the token validity.
                    example: false
        '403':
          description: The Source header is either no source or the wrong source.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    description: A message that validates the request based on the response status code.
                    example: Access denied!
        '404':
          description: The requested image or series could not be found, possibly because it has not been uploaded yet.
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucess:
                    type: boolean
                    example: false
                  message:
                    type: string
                    description: A message that validates the upload request based on the response status code.
                    example: Resource with SeriesInstanceUID <SeriesInstanceUID> is not yet uploaded!
    servers:
    - url: BASE_URL
      description: The BASE_URL is the root address for all your API requests. You must append this to all requests to the Platform API. To obtain this, contact support@qure.ai.
components:
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
x-refined-from:
- qure.ai-platform-api-xray-ct-openapi.yml
- qure.ai-platform-api-xray-v2-er-openapi.yml
x-hideTryItPanel: true
x-codeSamples: true