Everclear Solana API

The Solana API from Everclear — 2 operation(s) for solana.

Operations 2

POST /solana/intents Create a new intent on Solana #
POST /solana/create-lookup-table To create lookup tables for new account + asset #

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/connext-solana-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

connext-solana-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chimera Solana API
  version: 1.0.0
servers:
- url: https://api.testnet.everclear.org
- url: https://api.everclear.org
tags:
- name: Solana
paths:
  /solana/intents:
    post:
      summary: Create a new intent on Solana
      description: Submits a new intent transaction to the Solana blockchain using the specified parameters and configuration.
      operationId: callNewIntentSolana
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - origin
              - destinations
              - to
              - inputAsset
              - amount
              - callData
              - maxFee
              - user
              properties:
                origin:
                  type: string
                destinations:
                  type: array
                  items:
                    type: string
                to:
                  type: string
                from:
                  type: string
                  description: intent creator address
                inputAsset:
                  type: string
                amount:
                  type: string
                  format: bigint
                  description: Token amount, denominated in the asset's decimal units on the origin chain
                callData:
                  type: string
                maxFee:
                  type: string
                  format: bigint
                  description: Maximum fee amount, denominated in the asset's decimal units on the origin chain
                user:
                  type: string
                userTokenAccountPublicKey:
                  type: string
                programVaultAccountPublicKey:
                  type: string
                permit2Params:
                  type: object
                  properties:
                    nonce:
                      type: string
                      format: bigint
                      description: Nonce as a bigint
                    deadline:
                      type: string
                      format: bigint
                      description: Deadline as a bigint
                    signature:
                      type: string
                  required:
                  - nonce
                  - deadline
                  - signature
                order_id:
                  type: string
                  description: Order ID for newOrder requests
      responses:
        '200':
          description: Successfully created intent transaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionRequest'
        '400':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '404':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '500':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
      tags:
      - Solana
  /solana/create-lookup-table:
    post:
      summary: To create lookup tables for new account + asset
      description: Creating lookup tables for new users to save account space on chain
      operationId: createSolanaLookupTable
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - inputAsset
              - user
              - userTokenAccountPublicKey
              - programVaultAccountPublicKey
              properties:
                inputAsset:
                  type: string
                user:
                  type: string
                userTokenAccountPublicKey:
                  type: string
                programVaultAccountPublicKey:
                  type: string
      responses:
        '200':
          description: Succesfull serialise data fetch transaction data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionRequest'
        '400':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '404':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '500':
          description: Registries not found and deployed for given domain
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
      tags:
      - Solana
components:
  schemas:
    TransactionRequest:
      type: object
      properties:
        to:
          type:
          - string
          - 'null'
        from:
          type:
          - string
          - 'null'
        nonce:
          type: string
          format: bigint
        gasLimit:
          type: string
          format: bigint
        gasPrice:
          type: string
          format: bigint
        data:
          type: string
          format: byte
        value:
          type: string
          format: bigint
        chainId:
          type: integer
        type:
          type:
          - integer
          - 'null'
        accessList:
          type:
          - array
          - 'null'
          items:
            type: object
            properties:
              address:
                type: string
              storageKeys:
                type: array
                items:
                  type: string
        maxPriorityFeePerGas:
          type:
          - string
          - 'null'
          format: bigint
        maxFeePerGas:
          type:
          - string
          - 'null'
          format: bigint
        customData:
          type:
          - object
          - 'null'
          additionalProperties: true
        ccipReadEnabled:
          type:
          - boolean
          - 'null'
      required:
      - to
      - data
      - chainId