For the complete documentation index, see llms.txt. This page is also available as Markdown.

Supported Protocols

This document contains the complete list of supported protocols across Noodles APIs. Each protocol is categorized by its project, and includes relevant metadata such as descriptions and website links.

Endpoint

GET /api/v1/partner/project-protocol-list

Request

This endpoint takes no query parameters or request body.

Headers

Header
Required
Description

x-api-key

No

API key for authentication.

Example Request

curl --location 'https://api.noodles.fi/api/v1/partner/project-protocol-list' \
--header 'Accept-Encoding: application/json' \
--header 'x-api-key: <YOUR-API-KEY>'

Response Body

Fields

Field
Type
Description

data

array

List of project (e.g., Flowx, Movepump, Kriya).

├─ project_code

string

Unique identifier for the project.

├─ project_name

string

Display name of the project.

├─ project_description

string

Short description of the project.

├─ website_url

string

URL to the project's official website.

├─ icon_url

string

URL to the project's logo/icon image.

└─ protocols

array

List of protocols associated with the project.

├─ protocol_code

string

Unique identifier for the protocol.

├─ protocol_name

string

Display name of the protocol.

└─ type

string

Type/category of the protocol (e.g. dex, lending, staking, bonding-curve, aggregator).

Success Response

Note: The protocols array within each project may contain multiple entries when a project operates across more than one protocol type (e.g., both a DEX and a lending market).

See also:

Last updated