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

# Listar custos de influenciadores

> Retorna os custos de influenciadores agrupados por influenciador. Requer o escopo `influencers.read`.



## OpenAPI

````yaml get /influencers/costs
openapi: 3.1.0
info:
  title: Solomon Admin API
  description: API aberta para integração com a Solomon
  license:
    name: MIT
  version: 1.1.0
servers:
  - url: https://admin-api.sandbox.solomon.com.br/admin/v1
  - url: https://admin-api.solomon.com.br/admin/v1
security:
  - ApiKeyAuth: []
paths:
  /influencers/costs:
    get:
      summary: Listar custos de influenciadores
      description: >-
        Retorna os custos de influenciadores agrupados por influenciador. Requer
        o escopo `influencers.read`.
      operationId: listInfluencerCosts
      responses:
        '200':
          description: Custos agrupados por influenciador
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCostsListResponse'
        '500':
          description: Erro interno do servidor
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    InfluencerCostsListResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/InfluencerCostGroup'
        request_id:
          type: string
        timestamp:
          type: string
    Error:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
        request_id:
          type: string
        timestamp:
          type: string
    InfluencerCostGroup:
      type: object
      properties:
        name:
          type: string
        influencer_cost_id:
          type: string
          nullable: true
        details:
          type: array
          items:
            $ref: '#/components/schemas/InfluencerCostDetail'
    InfluencerCostDetail:
      type: object
      properties:
        cost_id:
          type: string
        fixed_fee:
          type: number
          nullable: true
        var_fee:
          type: number
          nullable: true
        start_date:
          type: string
          nullable: true
        end_date:
          type: string
          nullable: true
        frequency:
          type: string
          nullable: true
        value:
          type: number
          nullable: true
        campaign_cost_id:
          type: string
          nullable: true
        campaign:
          type: string
          nullable: true
        is_campaign_cost:
          type: boolean
          nullable: true
        is_coupon_cost:
          type: boolean
          nullable: true
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: API Key para autenticação

````