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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/linea-prices-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
openapi: 3.2.0
info:
title: Linea Token Prices API
description: API to access token information on Linea, including prices, traded tokens and top movers over 24h.
version: 0.1.0
contact: {}
servers:
- url: https://token-api.linea.build
description: Linea Token API production server
tags:
- name: Prices
description: Token price history
paths:
/prices/{contractAddress}:
get:
description: Retrieve hourly prices over the last 24 hours for a single token
operationId: PricesController_findOne
parameters:
- name: contractAddress
required: true
in: path
description: The Ethereum contract address of the token
schema:
type: string
responses:
'200':
description: Successfully retrieved prices
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PriceResponseDto'
'400':
description: Invalid contract address format
'404':
description: Token not found
summary: Get hourly prices for a token
tags:
- Prices
/prices:
get:
description: Retrieve hourly prices over the last 24 hours for multiple tokens
operationId: PricesController_findMany
parameters:
- name: addresses
required: true
in: query
description: List of token contract addresses (comma-separated, max 100)
schema:
maxItems: 100
type: string
responses:
'200':
description: Successfully retrieved prices
content:
application/json:
schema:
type: object
description: Map of contract address to price history array
summary: Get hourly prices for multiple tokens
tags:
- Prices
components:
schemas:
PriceResponseDto:
type: object
properties:
price:
type: number
example: 1
description: Price in USD at a given date and time
timestamp:
format: date-time
type: string
example: '2026-05-19T13:38:03.784Z'
description: Date and time when the price was fetched
required:
- price
- timestamp