Angle User related information API

The User related information API from Angle — 3 operation(s) for user related information.

Operations 3

GET /v1/allowances Get allowances for a user
GET /v1/collect Get token information
GET /v1/balances Get balances of Angle tokens for a user

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/angle-user-related-information-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

angle-user-related-information-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Angle Allowances User related information API
  description: API to track the Angle Protocol state
servers:
- url: https://api.angle.money
tags:
- name: User related information
paths:
  /v1/allowances:
    get:
      summary: Get allowances for a user
      description: Return the allowances for a given user on a given chain for specific spenders. Can include additional token addresses.
      tags:
      - User related information
      parameters:
      - $ref: '#/components/parameters/requiredChainId'
      - $ref: '#/components/parameters/requiredUser'
      - $ref: '#/components/parameters/spenders'
      - $ref: '#/components/parameters/additionalTokenAddresses'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  allowances:
                    type: object
                    additionalProperties:
                      type: object
                      additionalProperties:
                        type: object
                        properties:
                          symbol:
                            type: string
                          allowance:
                            type: string
                          decimals:
                            type: number
  /v1/collect:
    get:
      summary: Get token information
      description: Retrieve data regarding a token used by a given user.
      tags:
      - User related information
      parameters:
      - $ref: '#/components/parameters/requiredChainId'
      - $ref: '#/components/parameters/optionalUser'
      - in: query
        name: spender
        schema:
          type: string
        required: false
        description: Spender address
        example: REPLACE_ME
      - $ref: '#/components/parameters/tokenAddress'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tokenInfoResponse'
  /v1/balances:
    get:
      summary: Get balances of Angle tokens for a user
      description: Return the balances for tokens in the for Angle token list for a given user. Can include additional token addresses.
      tags:
      - User related information
      parameters:
      - $ref: '#/components/parameters/requiredChainId'
      - $ref: '#/components/parameters/requiredUser'
      - $ref: '#/components/parameters/additionalTokenAddresses'
      responses:
        '200':
          description: Mapping between a token address and for each token the user balance, the decimals of the token as well as the token name
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/balances'
components:
  schemas:
    balances:
      type: array
      items:
        type: object
        additionalProperties:
          type: object
          properties:
            symbol:
              type: string
              description: Token symbol
            balance:
              type: string
              description: Token balance
            decimals:
              type: number
              description: Number of decimals of the token
    tokenInfoResponse:
      type: object
      properties:
        name:
          type: string
        symbol:
          type: string
        address:
          type: string
        decimals:
          type: number
        balance:
          type: string
        allowance:
          type: string
  parameters:
    requiredUser:
      name: user
      in: query
      description: User blockchain `address`
      required: true
      schema:
        type: string
      example: '0xa116f421ff82A9704428259fd8CC63347127B777'
    optionalUser:
      name: user
      in: query
      description: User blockchain `address` (optional)
      required: false
      schema:
        type: string
      example: '0xa116f421ff82A9704428259fd8CC63347127B777'
    spenders:
      name: spenders
      in: query
      description: Array of spenders
      required: true
      schema:
        type: array
        items:
          type: string
      example:
      - A
      - B
      - C
    additionalTokenAddresses:
      name: additionalTokenAddresses
      in: query
      required: false
      schema:
        type: array
        items:
          type: string
      example:
      - '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
      - '0x6B175474E89094C44Da98b954EedeAC495271d0F'
    tokenAddress:
      name: tokenAddress
      in: query
      description: Token address
      required: true
      schema:
        type: string
      example: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
    requiredChainId:
      in: query
      name: chainId
      description: Chain requested
      required: true
      schema:
        type: integer
      examples:
        Ethereum:
          value: 1
        Polygon:
          value: 137
        Optimism:
          value: 10
        Arbitrum:
          value: 42161
        Avalanche:
          value: 43114
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic