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

# Fetch the stored fundraising fit profile

> Free -- not billed, not authenticated via the meter() pipeline's rate-limit/credit steps beyond the standard Bearer key check.



## OpenAPI

````yaml /helium/openapi.json get /v1/fundraising/profile
openapi: 3.1.0
info:
  title: Helium API
  version: '1.0'
  description: >-
    Helium is a fundraising-research REST API sharing Horizon's prepaid-credit
    account system. Every request authenticates with an `Authorization: Bearer
    <key>` header (the same key that works against Horizon) and, on a billed
    endpoint, debits a fixed number of credits from your shared prepaid balance.
    Check your balance any time with GET /v1/usage (shared with Horizon).
servers:
  - url: https://lite.gravitygtm.com/api
security:
  - bearerAuth: []
paths:
  /v1/fundraising/profile:
    get:
      tags:
        - fundraising
      summary: Fetch the stored fundraising fit profile
      description: >-
        Free -- not billed, not authenticated via the meter() pipeline's
        rate-limit/credit steps beyond the standard Bearer key check.
      responses:
        '200':
          description: 200 -- the stored profile.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundraisingProfile'
        '401':
          description: >-
            401 unauthorized -- missing or invalid `Authorization: Bearer <key>`
            header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: >-
            404 not_found -- no profile has been set yet for this account. Call
            PUT /v1/fundraising/profile first.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    FundraisingProfile:
      oneOf:
        - type: object
          properties:
            raise_type:
              type: string
              enum:
                - startup_equity
            stage:
              type: string
              enum:
                - pre-seed
                - seed
                - series-a
                - series-b
                - series-c-plus
            round_size_usd:
              type: number
              exclusiveMinimum: 0
            sector_tags:
              type: array
              items:
                type: string
                minLength: 1
              default: []
            icp_description:
              type: string
              minLength: 1
            growth_metrics:
              type: object
              properties:
                arr_usd:
                  type: number
                  minimum: 0
                growth_rate_pct:
                  type: number
                team_size:
                  type: integer
                  minimum: 0
            notable_investors:
              type: array
              items:
                type: string
                minLength: 1
              default: []
            raise_goals:
              type: string
              minLength: 1
            known_competitors:
              type: array
              items:
                type: string
                minLength: 1
              default: []
            founder_linkedin_url:
              type: string
              format: uri
            company_linkedin_url:
              type: string
              format: uri
            geography:
              type: string
              minLength: 1
            geography_weight:
              type: string
              enum:
                - strict
                - preferred
                - loose
              default: preferred
            monitoring_opt_in:
              type: boolean
              default: false
            lookalike_monitoring_opt_in:
              type: boolean
              default: false
            founder_name:
              type: string
              minLength: 1
            company_name:
              type: string
              minLength: 1
            calendar_link:
              type: string
              format: uri
          required:
            - raise_type
            - stage
        - type: object
          properties:
            raise_type:
              type: string
              enum:
                - fund_lp
            fund_name:
              type: string
              minLength: 1
            fund_thesis:
              type: string
              minLength: 1
            check_size_usd:
              type: number
              exclusiveMinimum: 0
            target_lp_types:
              type: array
              items:
                type: string
                enum:
                  - family_office
                  - hnw_individual
                  - recently_exited_founder
                  - institutional
                  - angel
              default:
                - institutional
            target_close_date:
              type: string
            founder_linkedin_url:
              type: string
              format: uri
            company_linkedin_url:
              type: string
              format: uri
            geography:
              type: string
              minLength: 1
            geography_weight:
              type: string
              enum:
                - strict
                - preferred
                - loose
              default: preferred
            monitoring_opt_in:
              type: boolean
              default: false
            lookalike_monitoring_opt_in:
              type: boolean
              default: false
            founder_name:
              type: string
              minLength: 1
            company_name:
              type: string
              minLength: 1
            calendar_link:
              type: string
              format: uri
          required:
            - raise_type
            - fund_name
    ErrorResponse:
      type: object
      description: >-
        Standard error body. Every response (success or error) carries a
        request_id for support reference.
      properties:
        error:
          type: string
          description: Machine-readable error code.
          enum:
            - unauthorized
            - insufficient_credits
            - not_found
            - rate_limited
            - vendor_error
            - vendor_capacity
        message:
          type: string
          description: Human-readable error detail.
        request_id:
          type: string
          format: uuid
        credits_remaining:
          type: number
          description: >-
            Present whenever a post-reservation/refund balance is known for this
            request.
        refund_issue:
          type: boolean
          description: >-
            Set only when a compensating credit refund itself failed (e.g. a
            transient store error) -- the customer may have been charged without
            the refund landing yet.
      required:
        - error
        - message
        - request_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````