Tweed blockchains API

The blockchains API from Tweed — 4 operation(s) for blockchains.

Operations 4

GET /v1/blockchains/{id} Get a blockchain by id #
GET /v1/blockchains Get all blockchains #
GET /v1/blockchains/multiple/{ids} Get multiple blockchains by ids #
GET /v1/blockchains/native-asset/{id} Get native asset for a blockchain #

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/tweed-blockchains-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

tweed-blockchains-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tweed assets Blockchains API
  description: ''
  version: '1.0'
  contact: {}
servers: []
tags:
- name: blockchains
paths:
  /v1/blockchains/{id}:
    get:
      operationId: findBlockchainById
      summary: Get a blockchain by id
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: A blockchain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FindBlockchainResponseDto'
      tags:
      - blockchains
      security:
      - bearer: []
  /v1/blockchains:
    get:
      operationId: findAllBlockchains
      summary: Get all blockchains
      parameters: []
      responses:
        '200':
          description: A list of available blockchains
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FindBlockchainResponseDto'
      tags:
      - blockchains
      security:
      - bearer: []
  /v1/blockchains/multiple/{ids}:
    get:
      operationId: findMultipleBlockchainsByIds
      summary: Get multiple blockchains by ids
      parameters:
      - name: ids
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: A list of blockchains
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FindBlockchainResponseDto'
      tags:
      - blockchains
      security:
      - bearer: []
  /v1/blockchains/native-asset/{id}:
    get:
      operationId: getBlockchainNativeAsset
      summary: Get native asset for a blockchain
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetDto'
      tags:
      - blockchains
      security:
      - bearer: []
components:
  schemas:
    AssetDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        symbol:
          type: string
        iconUrl:
          type: string
        defaultDecimals:
          type: number
        isStablecoin:
          type: boolean
        defaultContractAddress:
          type: string
      required:
      - id
      - name
      - symbol
      - iconUrl
      - defaultDecimals
      - isStablecoin
      - defaultContractAddress
    FindBlockchainResponseDto:
      type: object
      properties:
        id:
          type: string
        blockchainEcosystem:
          type: object
        nativeCurrency:
          type: object
        name:
          type: string
        isMainnet:
          type: boolean
        rpcUrl:
          type: string
        iconUrl:
          type: string
        explorer:
          type: object
        indexer:
          type: object
        metadata:
          type: object
      required:
      - id
      - blockchainEcosystem
      - nativeCurrency
      - name
      - isMainnet
      - rpcUrl
      - iconUrl
      - explorer
      - indexer
      - metadata
  securitySchemes:
    bearer:
      scheme: Bearer
      bearerFormat: Bearer
      description: 'Please enter token in following format: Bearer JWT'
      type: http
x-amazon-apigateway-gateway-responses:
  DEFAULT_4XX:
    statusCode: 403
    responseParameters:
      gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
      gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'''
      gatewayresponse.header.Access-Control-Allow-Methods: '''GET,OPTIONS,POST'''
    responseTemplates:
      application/json: '{"message":$context.error.messageString}'
  DEFAULT_5XX:
    statusCode: 500
    responseParameters:
      gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
      gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'''
      gatewayresponse.header.Access-Control-Allow-Methods: '''GET,OPTIONS,POST'''
    responseTemplates:
      application/json: '{"message":$context.error.messageString}'