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

# Get Moment Info

> Retrieve detailed information about a Moment on the In•Process protocol, including onchain moment data, sales configuration, metadata, and moment admins.



## OpenAPI

````yaml GET /moment
openapi: 3.1.0
info:
  title: In•Process API
  description: >-
    The In•Process API enables browsing and managing moments from timelines.
    Retrieve moments from a specific artist's timeline, browse the in•process
    collective timeline, or filter by collection. The API supports creating
    moments, managing collections, handling payments, and interacting with the
    In•Process protocol ecosystem.
  version: 1.0.0
servers:
  - url: https://api.inprocess.world/api
    description: Production server
security: []
paths:
  /moment:
    get:
      summary: Get Moment Info
      description: >-
        Retrieve detailed information about a Moment on the In•Process protocol,
        including onchain moment data, sales configuration, metadata, and moment
        admins.
      operationId: getMomentInfo
      parameters:
        - name: collectionAddress
          in: query
          description: The contract address of the Moment
          required: true
          schema:
            type: string
        - name: tokenId
          in: query
          description: The token ID of the Moment
          required: true
          schema:
            type: string
        - name: chainId
          in: query
          description: 'Chain ID of the collection (default: Base, 8453)'
          required: false
          schema:
            type: integer
            format: int64
            default: 8453
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MomentInfo'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    MomentInfo:
      type: object
      required:
        - uri
        - owner
        - sale
        - admins
        - soldOut
        - protocol
      properties:
        uri:
          type: string
          description: Metadata URI of the moment
        owner:
          type: string
          description: Current owner address of the moment
        sale:
          $ref: '#/components/schemas/SalesConfig'
        soldOut:
          type: boolean
          description: True if the token's max supply has been fully minted
        admins:
          type: array
          description: Array of addresses with admin permissions
          items:
            type: string
        metadata:
          type: object
          description: Moment metadata object
          properties:
            name:
              type: string
              description: Moment name
            image:
              type: string
              description: Image URI
            description:
              type: string
              description: Moment description
            content:
              type: object
              description: Content object with media information
              properties:
                mime:
                  type: string
                  description: MIME type of the content
                uri:
                  type: string
                  description: URI of the content
        protocol:
          type: string
          description: Protocol the collection belongs to
          enum:
            - in_process
            - catalog
            - sound.xyz
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Error status
        message:
          type: string
          description: Error message
        errors:
          type: array
          description: >-
            Optional array of field-level validation errors. Typically included
            in 400 Bad Request responses for validation errors.
          items:
            type: object
            required:
              - field
              - message
            properties:
              field:
                type: string
                description: The field name that failed validation
              message:
                type: string
                description: The validation error message for this field
    SalesConfig:
      type: object
      required:
        - type
        - pricePerToken
        - saleStart
        - saleEnd
      properties:
        type:
          type: string
          enum:
            - fixedPrice
            - erc20Mint
          description: The sale type
        pricePerToken:
          oneOf:
            - type: string
            - type: integer
            - type: number
          description: >-
            Price per token in wei (18 decimals), as a decimal integer string or
            JSON number. For example, "100000000000000000" or 100000000000000000
            represents 0.1 ETH
        saleStart:
          oneOf:
            - type: string
            - type: integer
            - type: number
          description: >-
            Sale start time: Unix timestamp as a decimal integer string or JSON
            number
        saleEnd:
          oneOf:
            - type: string
            - type: integer
            - type: number
          description: >-
            Sale end time: Unix timestamp as a decimal integer string or JSON
            number
        currency:
          type: string
          description: >-
            Optional ERC20 token address. If not provided, defaults to the
            native token (ETH)

````