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

# Faixa Refinanciável

> Consulta o valor mínimo e máximo refinanciável pela placa informada



## OpenAPI

````yaml GET /v1/proposal/simulation/range/refinancing
openapi: 3.1.0
info:
  title: API Credicarro
  description: API para gerenciamento de cobranças e pagamentos usando o Credicarro.
  version: 1.0.0
servers:
  - url: https://api.staging.credicarro.com.br/integration
    description: Servidor para o ambiente de staging
security: []
paths:
  /v1/proposal/simulation/range/refinancing:
    get:
      tags:
        - Proposta
      summary: Consultar valor mínimo e máximo refinanciável
      description: Consulta o valor mínimo e máximo refinanciável pela placa informada
      parameters:
        - name: placa
          in: query
          description: Placa do veículo para busca
          required: true
          schema:
            type: string
            minLength: 7
            example: ABC-1234 ou ABC1D23
            description: Placa do veículo
      responses:
        '200':
          description: Faixa de valor refinanciavel
          content:
            application/json:
              schema:
                type: object
                properties:
                  opcoes_por_prazo:
                    type: array
                    items:
                      type: object
                      properties:
                        prazo:
                          type: integer
                          format: int32
                          description: Prazo
                          example: 6
                        valor_minimo_refinanciavel:
                          type: number
                          format: double
                          description: Mínimo valor refinanciavel
                          example: 12480
                        valor_maximo_refinanciavel:
                          type: number
                          format: double
                          description: Máximo valor refinanciavel
                          example: 35720
                      additionalProperties: false
                    nullable: true
                additionalProperties: false
        '400':
          description: Erro na requisição
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
        - bearerAuth: []
components:
  schemas:
    ProblemDetails:
      type: object
      properties:
        tipo:
          type: string
          description: Tipo de problema encontrado
          example: Partner.AccountIsIncompleted
        titulo:
          type: string
          description: Título do erro
          example: Bad Request
        status:
          type: integer
          format: int32
          description: Status Code do erro
          example: 400
        detalhe:
          type: string
          description: Descrição do erro
          example: Cadastro de conta não finalizado
        erro:
          type: 'null'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Cabeçalho de autenticação Bearer no formato `Bearer <token>` onde
        `<token>` é seu TOKEN de autenticação

````