> ## Documentation Index
> Fetch the complete documentation index at: https://docs.elata.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# Get app

> Returns detailed information for a single app, including social links, team, and artifacts.



## OpenAPI

````yaml /api-reference/openapi.yaml GET /apps/{tokenAddress}
openapi: 3.1.0
info:
  title: Elata App Store API
  version: 0.1.0
  description: |
    REST API for the Elata App Store at `app.elata.bio`.

    This spec is the source of truth for the public HTTP surface that powers
    third-party app discovery, launch flows, market widgets, user portfolio
    views, rewards claims, and runtime config.

    ### Status legend

    Every operation in this spec carries an `x-elata-status` extension:

    - `stable` — implemented today on `app.elata.bio/api`. Safe to depend on.
    - `proposed` — designed here, **not yet implemented**. Spec is the contract
      the backend should build against. Subject to change.
    - `planned` — acknowledged but not yet designed. Reserved namespace.

    ### Rate limits

    | Endpoint class | Limit       |
    | -------------- | ----------- |
    | Read endpoints | 100 req/min |
    | Heavy queries  | 10 req/min  |

    Production builds should bring their own RPC provider for direct
    on-chain reads (Alchemy, Infura, QuickNode).
  contact:
    name: Elata Biosciences
    url: https://github.com/elata-biosciences
servers:
  - url: https://app.elata.bio/api
    description: Production
security:
  - {}
  - siweBearer: []
tags:
  - name: Apps
    description: App discovery and detail.
  - name: Preflight
    description: Pre-launch validation for builders before sending transactions.
  - name: Market
    description: Token prices, candles, bonding-curve state, leaderboards.
  - name: Portfolio
    description: Per-wallet holdings, history, and P&L.
  - name: Rewards
    description: Claimable rewards across protocol and per-app distributors.
  - name: Config
    description: Runtime configuration for SDKs and AI agents.
paths:
  /apps/{tokenAddress}:
    get:
      tags:
        - Apps
      summary: Get app
      description: >-
        Returns detailed information for a single app, including social links,
        team, and artifacts.
      operationId: getApp
      parameters:
        - $ref: '#/components/parameters/TokenAddress'
      responses:
        '200':
          description: App detail.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppDetail'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    TokenAddress:
      in: path
      name: tokenAddress
      required: true
      schema:
        type: string
        pattern: ^0x[a-fA-F0-9]{40}$
      description: ERC-20 address of the app token.
  schemas:
    AppDetail:
      allOf:
        - $ref: '#/components/schemas/App'
        - type: object
          properties:
            website:
              type: string
              format: uri
            social:
              type: object
              additionalProperties:
                type: string
              description: Map of platform → URL (twitter, discord, github, ...).
            team:
              type: array
              items:
                type: object
                properties:
                  address:
                    type: string
                  name:
                    type: string
                  role:
                    type: string
            artifacts:
              type: array
              items:
                type: object
                properties:
                  kind:
                    type: string
                    example: build
                  url:
                    type: string
                    format: uri
                  sha256:
                    type: string
    App:
      type: object
      required:
        - id
        - tokenAddress
        - name
        - symbol
        - creator
        - status
        - createdAt
      properties:
        id:
          type: string
        tokenAddress:
          type: string
          pattern: ^0x[a-fA-F0-9]{40}$
        name:
          type: string
        symbol:
          type: string
        description:
          type: string
        imageUrl:
          type: string
          format: uri
        creator:
          type: string
          pattern: ^0x[a-fA-F0-9]{40}$
        status:
          type: string
          enum:
            - raising
            - live
        createdAt:
          type: string
          format: date-time
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: not_found
            message:
              type: string
            details:
              type: object
              additionalProperties: true
  responses:
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    siweBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |
        SIWE-issued JWT, scoped to a wallet address. Obtain via Sign-In With
        Ethereum (EIP-4361) against `app.elata.bio`. Required for personalized
        Portfolio and Rewards endpoints. The `sub` claim is the wallet address;
        a request whose path `{address}` does not match the `sub` is rejected.

````