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

# Get Public Merchant Profile

> Returns the public profile info (name, category, active status) of the merchant.

Returns the public profile details (such as business name, category, and active status) of the merchant.


## OpenAPI

````yaml GET /{id}
openapi: 3.0.0
info:
  title: NexaPay Business API
  version: 1.0.0
  description: Server-to-server merchant integration API documentation.
servers:
  - url: https://api.nexapay.ng/api/v1/business
    description: Production Server
security: []
tags: []
paths:
  /{id}:
    get:
      tags:
        - Auth
      summary: Retrieve public merchant profile details
      description: >-
        Returns the public profile info (name, category, active status) of the
        merchant.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Profile details retrieved.
        '404':
          description: Profile not found.

````