Request Protocols

List available multi-chain protocols and logics

get
/v1/protocols
Responses
200

OK

application/json
get
/v1/protocols
200

OK

Provides a list of Protocols. See Networks & Protocols.

const client = axios.create({ baseURL: 'https://api.protocolink.com' });
const getProtocols = async () => {
    const result = await client.get(`/v1/protocols`);
    return result.data;
}
const tokens = await getProtocols();

The result contains a list of protocols and logics that looks the following:

Last updated