CrunchDAO security-credentials API

The security-credentials API from CrunchDAO — 4 operation(s) for security-credentials.

Operations 4

POST /v1/security-credentials/tls/issue-certificate Show the authority certificate. #
POST /v1/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/security-credentials Create a security credentials. #
PATCH /v1/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/security-credentials/{securityCredentialsId} Show a security credentials. #
GET /v1/security-credentials/authority Show the authority certificate. #

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/crunchdao-security-credentials-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

crunchdao-security-credentials-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Security Credentials API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: security-credentials
paths:
  /v1/security-credentials/tls/issue-certificate:
    x-service-id: competition-service
    post:
      tags:
      - security-credentials
      summary: Show the authority certificate.
      operationId: issueTlsCertificate
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IssueTlsCertificateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IssuedTlsCertificate'
  /v1/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/security-credentials:
    x-service-id: competition-service
    post:
      tags:
      - security-credentials
      summary: Create a security credentials.
      operationId: createSecurityCredentials
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: userLogin
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: projectIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SecurityCredentialsCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityCredentials'
      security:
      - accessToken: []
      - apiKey: []
  ? /v1/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/security-credentials/{securityCredentialsId}
  : x-service-id: competition-service
    patch:
      tags:
      - security-credentials
      summary: Show a security credentials.
      operationId: updateSecurityCredentials
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: userLogin
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: projectIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: securityCredentialsId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SecurityCredentialsUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityCredentials'
      security:
      - accessToken: []
      - apiKey: []
  /v1/security-credentials/authority:
    x-service-id: competition-service
    get:
      tags:
      - security-credentials
      summary: Show the authority certificate.
      operationId: getAuthorityCredentials
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthorityCredentials'
components:
  schemas:
    AuthorityCredentials:
      type: object
      properties:
        certificatePemString:
          type: string
          description: The authority certificate used for signing other credentials.
    IssuedTlsCertificate:
      type: object
      properties:
        authorityCertificatePemString:
          type: string
          description: The authority certificate.
        tlsCertificatePemString:
          type: string
          description: The issued tls certificate.
    SecurityCredentials:
      type: object
      properties:
        id:
          type: integer
          format: int64
          description: For now, same as `projectId`.
        projectId:
          type: integer
          format: int64
          description: The ID of the project this security credentials belong to.
        certificatePublicKey:
          type: string
          description: The public key of the certificate used for signing.
        hotKey:
          type: string
          description: The hot key used for signing the message.
        cruncherWalletPublicKey:
          type: string
          description: The cruncher's wallet owning the hot key.
        message:
          type: string
          description: The message to be signed.
        signed:
          type: boolean
          description: Is the message signed?
        signedAt:
          type: string
          format: date-time
          description: When was the message signed. `null` if not yet signed.
        signature:
          type: string
          description: The signature of the message. `null` if not yet signed.
        createdAt:
          type: string
          format: date-time
          description: When was the entity created.
    SecurityCredentialsUpdateForm:
      type: object
      properties:
        signature:
          type: string
      required:
      - signature
    IssueTlsCertificateForm:
      type: object
      properties:
        tlsPublicKeyPemString:
          type: string
        commonName:
          type: string
        isClient:
          type: boolean
        isServer:
          type: boolean
        sanDns:
          type: string
        daysValid:
          type: integer
          format: int32
      required:
      - commonName
      - daysValid
      - isClient
      - isServer
      - sanDns
      - tlsPublicKeyPemString
    SecurityCredentialsCreateForm:
      type: object
      properties:
        hotKey:
          type: string
        cruncherWalletPublicKey:
          type: string
      required:
      - cruncherWalletPublicKey
      - hotKey
  securitySchemes:
    apiKey:
      type: apiKey
      name: apiKey
      in: query
      scheme: token
    accessToken:
      type: http
      in: header
      scheme: Bearer
externalDocs:
  description: docs.crunchdao.com
  url: https://docs.crunchdao.com