Tweed assets API

The assets API from Tweed — 5 operation(s) for assets.

Operations 5

GET /v1/assets/{id} Get an asset by id #
GET /v1/assets Get all assets #
GET /v1/assets/blockchain/{blockchainId} Get assets by blockchain id #
GET /v1/assets/all/blockchains Get all asset blockchains #
GET /v1/assets/assetBlockchain/{id} Get an asset blockchain by 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/tweed-assets-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-assets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tweed Assets API
  description: ''
  version: '1.0'
  contact: {}
servers: []
tags:
- name: assets
paths:
  /v1/assets/{id}:
    get:
      operationId: findAssetById
      summary: Get an asset by id
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: An asset
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetDto'
      tags:
      - assets
      security:
      - bearer: []
  /v1/assets:
    get:
      operationId: findAllAssets
      summary: Get all assets
      parameters: []
      responses:
        '200':
          description: A list of available assets
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssetDto'
      tags:
      - assets
      security:
      - bearer: []
  /v1/assets/blockchain/{blockchainId}:
    get:
      operationId: findAssetsByBlockchainId
      summary: Get assets by blockchain id
      parameters:
      - name: blockchainId
        required: true
        in: path
        schema:
          type: string
      - name: stableCoinOnly
        required: true
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: ''
      tags:
      - assets
      security:
      - bearer: []
  /v1/assets/all/blockchains:
    get:
      operationId: findAllAssetBlockchains
      summary: Get all asset blockchains
      parameters: []
      responses:
        '200':
          description: A list of available asset blockchains
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssetBlockchainDto'
      tags:
      - assets
      security:
      - bearer: []
  /v1/assets/assetBlockchain/{id}:
    get:
      operationId: findAssetBlockchainById
      summary: Get an asset blockchain by id
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: An asset blockchain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetBlockchainDto'
      tags:
      - assets
      security:
      - bearer: []
components:
  schemas:
    AssetBlockchainDto:
      type: object
      properties:
        id:
          type: string
        assetId:
          type: string
        blockchainId:
          type: string
        nativeCurrencyId:
          type: string
        contractAddress:
          type: string
        decimals:
          type: number
        Tokentype:
          type: string
          enum:
          - ERC20
          - ERC721
          - NATIVE
      required:
      - id
      - assetId
      - blockchainId
      - nativeCurrencyId
      - contractAddress
      - decimals
      - Tokentype
    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
  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}'