Oumla Ltd networks API

The networks API from Oumla Ltd — 2 operation(s) for networks.

Operations 2

GET /api/v1/network/enabled Get all enabled networks #
GET /api/v1/network/organization Get networks available for your organization #

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/oumla-ltd-networks-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

oumla-ltd-networks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oumla Core Server addresses Networks API
  description: 'Core API. Errors, request and response are documented per endpoint. Error response shape: code, category, message, statusCode, path, timestamp, requestId.'
  version: '1.0'
  contact: {}
servers:
- url: https://sandbox.oumla.com
  description: Mainnet
  x-fern-server-name: Mainnet
tags:
- name: networks
paths:
  /api/v1/network/enabled:
    get:
      description: Returns the enabled-networks catalog (ID, name, alias) from cache. Accessible to any authenticated user — exposes only non-sensitive metadata. On cache miss, rebuilds the index from the database.
      operationId: getEnabledNetworks
      parameters:
      - $ref: '#/components/parameters/SdkVersionHeader'
      responses:
        '200':
          description: Enabled networks index
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetEnabledNetworksResponseDto'
      security:
      - x-api-key: []
      summary: Get all enabled networks
      tags:
      - networks
  /api/v1/network/organization:
    get:
      description: Get networks available for your organization.
      operationId: getNetworks
      parameters:
      - name: skip
        required: true
        in: query
        schema:
          default: 0
          example: 0
          type: number
      - name: take
        required: true
        in: query
        schema:
          default: 10
          example: 10
          type: number
      - name: enabled
        required: false
        in: query
        description: Filter by enabled status (true = only enabled networks)
        schema:
          type: boolean
      - name: name
        required: false
        in: query
        description: Filter by network name
        schema:
          type: string
      - $ref: '#/components/parameters/SdkVersionHeader'
      responses:
        '200':
          description: Your available networks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrgNetworksResponseDto'
      security:
      - x-api-key: []
      summary: Get networks available for your organization
      tags:
      - networks
components:
  schemas:
    EnabledNetworkItemDto:
      type: object
      properties:
        networkId:
          type: string
          description: Network UUID
        name:
          type: string
          description: Human-readable network name
        alias:
          type: string
          description: Network alias used by event producers
      required:
      - networkId
      - name
      - alias
    GetEnabledNetworksResponseDto:
      type: object
      properties:
        networks:
          type: array
          items:
            $ref: '#/components/schemas/EnabledNetworkItemDto'
      required:
      - networks
    PaginationMetaDto:
      type: object
      properties:
        totalElements:
          type: number
          example: 100
          description: Total number of items
        totalPages:
          type: number
          example: 10
          description: Total number of pages
        skip:
          type: number
          example: 0
        take:
          type: number
          example: 10
      required:
      - totalElements
      - totalPages
      - skip
      - take
    GetOrgNetworksResponseDto:
      type: object
      properties:
        networks:
          type: array
          items:
            $ref: '#/components/schemas/OrgNetworkItemDto'
        pagination:
          $ref: '#/components/schemas/PaginationMetaDto'
      required:
      - networks
      - pagination
    OrgNetworkItemDto:
      type: object
      properties:
        id:
          type: string
        enabled:
          type: boolean
          description: Whether this network is usable by the organization (Network.enabled AND OrganizationNetwork.enabled)
        name:
          type: string
        globalAccess:
          type: boolean
        chainId:
          type: number
        isMainnet:
          type: boolean
        isGasless:
          type: boolean
          description: Whether the network sponsors gas fees
        addressFamily:
          type: string
          enum:
          - EVM
          - BITCOIN
          - MOVE
          - SOLANA
          - COSMOS
          - TRON
          - STARKNET
        decimals:
          type: number
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
      - id
      - enabled
      - name
      - globalAccess
      - isMainnet
      - isGasless
      - addressFamily
      - decimals
  parameters:
    SdkVersionHeader:
      name: x-sdk-version
      in: header
      description: SDK version header
      required: true
      schema:
        type: string
        default: 1.0.0
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication