Coinme Submit Blockchain Id API

The Submit Blockchain Id API from Coinme — 1 operation(s) for submit blockchain id.

Operations 1

PUT /submit-blockchain-id #

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/coinme-submit-blockchain-id-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

coinme-submit-blockchain-id-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Coinme Crypto-as-a-Service AuthLinkResult Submit Blockchain Id API
  version: '1.2'
  description: 'Coinme Crypto-as-a-Service (CaaS) API. Harvested from provider-published per-endpoint OpenAPI blocks at docs.coinme.com/reference. Modular crypto infrastructure: KYC onboarding, quotes, buy/sell orders, wallets, sends, cash on/off-ramp, payment methods, and webhooks.'
servers:
- url: https://caas.coinme.com/services
  description: production
- url: https://caas-staging.coinme.com/services
  description: staging
tags:
- name: Submit Blockchain Id
paths:
  /submit-blockchain-id:
    put:
      description: ''
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties: {}
              examples:
                OK:
                  summary: OK
                  value: "{\n  \"partnerTransactionId\": \"txn-1234-abcd-5678\" //identifies the transaction in Coinme's system for which the blockchain transaction ID is being submitted\n}"
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                required:
                - name
              examples:
                Bad Request:
                  summary: Bad Request
                  value: "{\n  \"data\": null,\n  \"errorResponse\": {\n    \"httpStatus\":\"200\",\n    \"timestamp\":\"2022-02-01T18:59:28.297Z\", //UTC\n    \"path\":\"/services/submit-blockchain-id PUT\", //The error code is just a sample showing the structure of the error code.\n    \"errorData\": [\n      {\n        \"errorCode\":\"123-123-123-123\",\n        \"message\":\"Invalid Blockchain Hash\"\n      }\n    ]\n}"
      parameters:
      - in: header
        name: Authorization
        schema:
          type: string
          default: Bearer ******
        required: true
        description: Bearer token {authorize} endpoint
      - in: header
        name: User-Agent
        schema:
          type: string
        description: Partner User Agent ID (provided by Coinme)
        required: true
      operationId: put_submit-blockchain-id
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                partnerTransactionId:
                  type: string
                  description: ID of the sell transaction from the transaction endpoint
                blockchainTransactionId:
                  type: string
                  description: Onchain transaction hash of the sell order sent to Coinme
                refundWalletAddress:
                  type: string
                  description: address on which to execute refund to in case of transaction failure
              required:
              - partnerTransactionId
              - blockchainTransactionId
      security:
      - x-api-key: []
      tags:
      - Submit Blockchain Id
components:
  securitySchemes:
    basic:
      type: http
      scheme: basic
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key