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/valora-transactions-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: Valora hooks Transactions API
description: Public HTTP API behind the Valora mobile wallet, including the open-source Divvi Hooks API (positions, shortcuts) and the token, swap-quote, NFT, and transaction-simulation endpoints the wallet consumes. This specification is DERIVED by API Evangelist from Valora's open-source code (the divvi-xyz/hooks repository, formerly valora-inc/hooks, which implements the hooks-api Google Cloud Function and consumes the other endpoints) plus live probes of the production host. Valora does not publish an OpenAPI; treat this as a faithful reconstruction, not a provider contract.
version: 1.0.0
contact:
url: https://github.com/divvi-xyz/hooks
x-provenance:
generated: '2026-07-21'
method: derived
source: https://github.com/divvi-xyz/hooks (src/api/index.ts, src/runtime/simulateTransactions.ts, src/utils/prepareSwapTransactions.ts, src/apps/hedgey/nfts.ts)
probes:
- url: https://api.mainnet.valora.xyz/getTokensInfoWithPrices
status: 200
- url: https://api.mainnet.valora.xyz/hooks-api/getShortcuts
status: 200
- url: https://api.mainnet.valora.xyz/getSwapQuote
status: 400
servers:
- url: https://api.mainnet.valora.xyz
description: Production (mainnet networks)
- url: https://api.alfajores.valora.xyz
description: Staging (Celo Alfajores and other testnets)
tags:
- name: transactions
description: Transaction simulation
paths:
/simulateTransactions:
post:
operationId: simulateTransactions
tags:
- transactions
summary: Simulate transactions
description: Simulates a batch of transactions on the given network and returns per-transaction gas estimates.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- transactions
- networkId
properties:
transactions:
type: array
items:
$ref: '#/components/schemas/Transaction'
networkId:
$ref: '#/components/schemas/NetworkId'
responses:
'200':
description: Simulation results.
content:
application/json:
schema:
type: object
properties:
status:
type: string
enum:
- OK
simulatedTransactions:
type: array
items:
$ref: '#/components/schemas/SimulatedTransaction'
'400':
description: Valid but unsupported request (e.g. unsupported networkId).
components:
schemas:
NetworkId:
type: string
enum:
- celo-mainnet
- celo-alfajores
- ethereum-mainnet
- ethereum-sepolia
- arbitrum-one
- arbitrum-sepolia
- op-mainnet
- op-sepolia
- polygon-pos-mainnet
- polygon-pos-amoy
- base-mainnet
- base-sepolia
SimulatedTransaction:
type: object
properties:
status:
type: string
enum:
- success
- failure
blockNumber:
type: string
gasNeeded:
type: number
gasUsed:
type: number
gasPrice:
type: string
Transaction:
type: object
required:
- networkId
- from
- to
- data
properties:
networkId:
$ref: '#/components/schemas/NetworkId'
from:
type: string
to:
type: string
data:
type: string
value:
type: string
description: Serialized bigint (wei).
gas:
type: string
description: Serialized bigint (wei).
estimatedGasUse:
type: string
description: Serialized bigint (wei).