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

# Get API listing detail



## OpenAPI

````yaml /openapi/public-gateway.json get /v1/apis/{slug}
openapi: 3.1.0
info:
  title: Apiosk Gateway Public API
  version: 1.1.0
  description: >-
    Sanitized public API reference for the Apiosk gateway. This document covers
    the integration contract for discovery, metadata, execution, payments, and
    community API publishing without exposing internal gateway implementation
    details.
servers:
  - url: https://gateway.apiosk.com
    description: Production gateway
security: []
tags:
  - name: Discovery
    description: Browse listing groups, APIs, and listing detail.
  - name: Execution
    description: Call APIs through public metadata and uniform execute routes.
  - name: Payments
    description: 'Public x402 boundary: 402 responses and payment proof header.'
  - name: Publishing
    description: Register, inspect, update, and deactivate community APIs.
  - name: Metrics
    description: Public wallet and traffic summary routes.
paths:
  /v1/apis/{slug}:
    get:
      tags:
        - Discovery
      summary: API detail
      operationId: getApiDetail
      parameters:
        - name: slug
          in: path
          required: true
          description: Gateway API slug.
          schema:
            type: string
          example: neural-sync-01
      responses:
        '200':
          description: Public listing detail including endpoint docs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiDetailResponse'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    ApiDetailResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        slug:
          type: string
        name:
          type: string
        description:
          type: string
        long_description:
          type: string
          nullable: true
        category:
          type: string
          nullable: true
        listing_type:
          type: string
          nullable: true
        docs_url:
          type: string
          nullable: true
        gateway_base_url:
          type: string
        example_usage:
          type: string
          nullable: true
        authentication:
          type: object
          additionalProperties: true
          nullable: true
        active:
          type: boolean
        verified:
          type: boolean
        listing_metadata:
          type: object
          additionalProperties: true
        created_at:
          type: string
          format: date-time
        endpoints:
          type: array
          items:
            $ref: '#/components/schemas/EndpointDocResponse'
    EndpointDocResponse:
      type: object
      properties:
        method:
          type: string
        path:
          type: string
        full_url:
          type: string
        description:
          type: string
          nullable: true
        price_usd:
          type: number
        payment_required:
          type: boolean
        request_body:
          type: object
          additionalProperties: true
          nullable: true
        response_body:
          type: object
          additionalProperties: true
          nullable: true
        request_example:
          nullable: true
        response_example:
          nullable: true
        headers:
          type: object
          additionalProperties: true
          nullable: true
        query_params:
          type: object
          additionalProperties: true
          nullable: true
  responses:
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true

````