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

# Spread From Bps

> Create a Spread from basis points [Tier: FREE, Credits: 0]



## OpenAPI

````yaml api-specs/core.json post /quantlib/core/types/spread/from-bps
openapi: 3.1.0
info:
  title: FinceptQuantLib API - Core
  description: Core module endpoints for FinceptQuantLib API
  version: 3.0.0
  contact:
    name: Fincept API Support
    url: https://fincept.in
servers:
  - url: https://api.fincept.in
    description: Fincept API Production Server
security:
  - APIKeyHeader: []
tags:
  - name: quantlib-core
    description: API endpoints for core operations
paths:
  /quantlib/core/types/spread/from-bps:
    post:
      tags:
        - quantlib-core
      summary: Spread From Bps
      description: 'Create a Spread from basis points [Tier: FREE, Credits: 0]'
      operationId: spread_from_bps_quantlib_core_types_spread_from_bps_post
      parameters:
        - name: bps
          in: query
          required: true
          schema:
            type: number
            title: Bps
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                type: object
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for authentication. Get your key at
        https://api.fincept.in/auth/register

````