Fordefi Enclave Keys API

The Enclave Keys API from Fordefi — 1 operation(s) for enclave keys.

Operations 1

GET /api/v1/enclave-keys List Enclave Keys #

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/fordefi-enclave-keys-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

fordefi-enclave-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fordefi Address Book Enclave Keys API
  version: 0.2.0
  description: These endpoints allow you to list the contacts in your address book.<br><br>To add/remove contacts, visit the Fordefi web console. See the <a href='https://docs.fordefi.com/user-guide/address-book'>user guide</a> for more info.
servers:
- url: https://api.fordefi.com/
  description: Production
security:
- bearerAuth: []
tags:
- name: Enclave Keys
paths:
  /api/v1/enclave-keys:
    get:
      tags:
      - Enclave Keys
      summary: List Enclave Keys
      description: Get the public keys of the enclave.
      operationId: list_enclave_keys_api_v1_enclave_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEnclaveKeysResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PreconditionFailedError'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
        '500':
          description: Unexpected Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BaseError'
        '401':
          description: Unauthorized User
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BaseError'
        '403':
          description: Forbidden User
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BaseError'
        '408':
          description: Request Timeout
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BaseError'
        '429':
          description: Rate Limit Exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitError'
components:
  schemas:
    PreconditionFailedError:
      properties:
        title:
          type: string
          title: Title
          description: Human-readable error message.
        detail:
          type: string
          title: Detail
          description: Detailed error message.
        full_detail:
          title: Full Detail
          description: Full error message with additional details, if available.
          type: string
        request_id:
          title: Request Id
          description: Request ID - for debugging purposes.
          type: string
        system_error_code:
          title: System Error Code
          description: An additional system error code in Fordefi.
          type: string
      type: object
      required:
      - title
      - detail
      title: PreconditionFailedError
    SignedEncryptionKey:
      properties:
        public_key:
          type: string
          title: Public Key
          description: Public key used for encryption.
          example: SGVsbG8=
        timestamped_signature:
          $ref: '#/components/schemas/TimestampedSignature'
          description: Signature of the public key.
        certificate:
          type: string
          title: Certificate
          description: Short-lived ECDSA-signed certificate for the encryption public key.
          example: SGVsbG8=
      type: object
      required:
      - public_key
      - timestamped_signature
      - certificate
      title: SignedEncryptionKey
      description: Encryption key signed by the enclave.
    TimestampedSignature:
      properties:
        signature:
          type: string
          title: Signature
          example: SGVsbG8=
        timestamp:
          type: integer
          title: Timestamp
      type: object
      required:
      - signature
      - timestamp
      title: TimestampedSignature
    BaseError:
      properties:
        title:
          type: string
          title: Title
          description: Human-readable error message.
        detail:
          type: string
          title: Detail
          description: Detailed error message.
        full_detail:
          title: Full Detail
          description: Full error message with additional details, if available.
          type: string
        request_id:
          title: Request Id
          description: Request ID - for debugging purposes.
          type: string
      type: object
      required:
      - title
      - detail
      title: BaseError
    ValidationErrorDetail:
      properties:
        loc:
          items:
            anyOf:
            - type: integer
            - type: string
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationErrorDetail
    Attestation:
      properties:
        attestation:
          type: string
          title: Attestation
          example: SGVsbG8=
        certificate:
          type: string
          title: Certificate
          example: SGVsbG8=
      type: object
      required:
      - attestation
      - certificate
      title: Attestation
      description: Attestation of a public key.
    AttestedSigningKey:
      properties:
        public_key:
          type: string
          title: Public Key
          description: Public key used for signing.
          example: SGVsbG8=
        attestation:
          $ref: '#/components/schemas/Attestation'
          description: Attestation of the public key.
      type: object
      required:
      - public_key
      - attestation
      title: AttestedSigningKey
      description: Signing key attested by the enclave.
    RateLimitError:
      properties: {}
      type: object
      title: RateLimitError
    ListEnclaveKeysResponse:
      properties:
        sign_key:
          deprecated: true
          $ref: '#/components/schemas/AttestedSigningKey'
        encryption_key:
          $ref: '#/components/schemas/SignedEncryptionKey'
        intent_signing_key:
          $ref: '#/components/schemas/AttestedSigningKey'
      type: object
      required:
      - encryption_key
      - intent_signing_key
      title: ListEnclaveKeysResponse
    ValidationError:
      properties:
        title:
          type: string
          title: Title
          description: Human-readable error message.
        detail:
          items:
            $ref: '#/components/schemas/ValidationErrorDetail'
          type: array
          title: Detail
        full_detail:
          title: Full Detail
          description: Full error message with additional details, if available.
          type: string
        request_id:
          title: Request Id
          description: Request ID - for debugging purposes.
          type: string
      type: object
      required:
      - title
      - detail
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT