Argo Workflows ArtifactService API

The ArtifactService API from Argo Workflows — 5 operation(s) for artifactservice.

Operations 5

GET /artifact-files/{namespace}/{idDiscriminator}/{id}/{nodeId}/{artifactDiscriminator}/{artifactName} Argo Workflows Get an Artifact. #
GET /artifacts-by-uid/{uid}/{nodeId}/{artifactName} Argo Workflows Get an Output Artifact by UID. #
GET /artifacts/{namespace}/{name}/{nodeId}/{artifactName} Argo Workflows Get an Output Artifact. #
GET /input-artifacts-by-uid/{uid}/{nodeId}/{artifactName} Argo Workflows Get an Input Artifact by UID. #
GET /input-artifacts/{namespace}/{name}/{nodeId}/{artifactName} Argo Workflows Get an Input Artifact. #

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/argo-workflows-artifactservice-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

argo-workflows-artifactservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. For more information, please see https://argo-workflows.readthedocs.io/en/latest/
  title: Argo Workflows ArchivedWorkflowService Artifact Service API
  version: 3.6.0
servers:
- url: http://localhost:2746
- url: https://localhost:2746
security:
- BearerToken: []
tags:
- name: ArtifactService
paths:
  /artifact-files/{namespace}/{idDiscriminator}/{id}/{nodeId}/{artifactDiscriminator}/{artifactName}:
    get:
      tags:
      - ArtifactService
      summary: Argo Workflows Get an Artifact.
      operationId: ArtifactService_GetArtifactFile
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: idDiscriminator
        in: path
        required: true
        schema:
          type: string
          enum:
          - workflow
          - archived-workflows
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      - name: artifactName
        in: path
        required: true
        schema:
          type: string
      - name: artifactDiscriminator
        in: path
        required: true
        schema:
          type: string
          enum:
          - outputs
      responses:
        '200':
          description: An artifact file.
          content:
            application/json:
              schema:
                type: string
                format: binary
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /artifacts-by-uid/{uid}/{nodeId}/{artifactName}:
    get:
      tags:
      - ArtifactService
      summary: Argo Workflows Get an Output Artifact by UID.
      operationId: ArtifactService_GetOutputArtifactByUID
      parameters:
      - name: uid
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      - name: artifactName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: An artifact file.
          content:
            application/json:
              schema:
                type: string
                format: binary
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /artifacts/{namespace}/{name}/{nodeId}/{artifactName}:
    get:
      tags:
      - ArtifactService
      summary: Argo Workflows Get an Output Artifact.
      operationId: ArtifactService_GetOutputArtifact
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      - name: artifactName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: An artifact file.
          content:
            application/json:
              schema:
                type: string
                format: binary
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /input-artifacts-by-uid/{uid}/{nodeId}/{artifactName}:
    get:
      tags:
      - ArtifactService
      summary: Argo Workflows Get an Input Artifact by UID.
      operationId: ArtifactService_GetInputArtifactByUID
      parameters:
      - name: uid
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      - name: artifactName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: An artifact file.
          content:
            application/json:
              schema:
                type: string
                format: binary
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /input-artifacts/{namespace}/{name}/{nodeId}/{artifactName}:
    get:
      tags:
      - ArtifactService
      summary: Argo Workflows Get an Input Artifact.
      operationId: ArtifactService_GetInputArtifact
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: nodeId
        in: path
        required: true
        schema:
          type: string
      - name: artifactName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: An artifact file.
          content:
            application/json:
              schema:
                type: string
                format: binary
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    grpc.gateway.runtime.Error:
      type: object
      properties:
        code:
          type: integer
        details:
          type: array
          items:
            $ref: '#/components/schemas/google.protobuf.Any'
        error:
          type: string
        message:
          type: string
    google.protobuf.Any:
      type: object
      properties:
        type_url:
          type: string
        value:
          type: string
          format: byte
  securitySchemes:
    BearerToken:
      type: apiKey
      in: header
      name: Authorization
      description: JWT Bearer token