Pocket Network Application API

Pocket application module — applications stake POKT to consume relays

Operations 2

GET /pocket/application/v1/application List Shannon Applications #
GET /pocket/application/v1/application/{address} Get Shannon Application #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/json-ld/pocket-network-context.jsonld
🔗
SourceCode
https://github.com/buildwithgrove/path
🔗
SourceCode
https://github.com/pokt-network/poktroll
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-cometbft-node-block-inspect-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-path-relay-readiness-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-application-balance-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-application-session-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-block-explorer-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-service-economics-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-supplier-gateway-survey-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/pocket-network/refs/heads/main/arazzo/pocket-network-shannon-transaction-lookup-workflow.yml

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/pocket-network-application-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

pocket-network-application-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pocket Network Shannon RPC Application API
  description: 'The Pocket Network Shannon chain is a Cosmos SDK + CometBFT chain (poktroll). Every full node exposes the standard Cosmos REST and CometBFT RPC surfaces. Public endpoints are operated by Grove and Pocket Network Foundation. This profile documents the read-only endpoints most often consumed by integrators — block, transaction, validator, supply, and on-chain module queries (application, supplier, gateway, service, session, proof, tokenomics). Write operations are signed transactions broadcast via the same REST surface or the poktrolld CLI; they share the `/cosmos/tx/v1beta1/txs` endpoint.

    '
  version: v1
  contact:
    name: Pocket Network Foundation
    url: https://pocket.network
  license:
    name: MIT
    url: https://github.com/pokt-network/poktroll/blob/main/LICENSE
servers:
- url: https://shannon-grove-api.mainnet.poktroll.com
  description: Grove-operated Shannon mainnet REST endpoint
- url: https://shannon-testnet-grove-api.beta.poktroll.com
  description: Grove-operated Shannon beta testnet REST endpoint
tags:
- name: Application
  description: Pocket application module — applications stake POKT to consume relays
paths:
  /pocket/application/v1/application:
    get:
      summary: List Shannon Applications
      description: 'List every Application module entry. Applications stake POKT to consume relays via gateways for one or more services.

        '
      operationId: listShannonApplications
      tags:
      - Application
      responses:
        '200':
          description: Application list.
          content:
            application/json:
              schema:
                type: object
  /pocket/application/v1/application/{address}:
    get:
      summary: Get Shannon Application
      description: Return a single Application by Shannon address.
      operationId: getShannonApplication
      tags:
      - Application
      parameters:
      - name: address
        in: path
        required: true
        description: Bech32 Shannon address (pokt1...).
        schema:
          type: string
      responses:
        '200':
          description: Application record.
          content:
            application/json:
              schema:
                type: object