Rialto

Offerings & Securities

Browse investment offerings, security classes, offering documents, and exemption types.

Offerings represent investment opportunities created by issuers on the Rialto platform. Each offering has one or more security classes that investors can subscribe to.

All endpoints below are under the /issuance prefix and require either a Rialto access_token (Bearer) or X-API-Key.

Browsing Offerings

List Offerings

curl "https://api.rialto.com/issuance/offerings?status=active&page=1&limit=20" \
  -H "Authorization: Bearer <rialto_access_token>"

Query Parameters:

ParameterTypeDefaultDescription
statusstring--Filter: active, paused, or closed
exemption_typestring--Filter by exemption type
pagenumber1Page number
limitnumber20Items per page (max 100)
sort_bystring--Sort field
sort_orderasc or descdescSort direction

Response:

{
  "success": true,
  "data": [
    {
      "id": "a1b2c3d4-...",
      "name": "Series A Preferred Stock Offering",
      "issuer": {
        "id": "b2c3d4e5-...",
        "legal_name": "Acme Corp"
      },
      "exemption_type": "reg_d_506c",
      "amounts": {
        "target": "5000000.00",
        "maximum": "10000000.00",
        "raised": "2500000.00",
        "remaining": "7500000.00",
        "currency": "USD"
      },
      "investment": {
        "minimum": "25000.00",
        "maximum": "500000.00"
      },
      "investors": {
        "total": 42,
        "accredited": 40,
        "non_accredited": 2
      },
      "deadline": "2026-12-31",
      "status": "open",
      "opened_at": "2026-01-15T00:00:00.000Z",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-03-15T00:00:00.000Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 5,
    "total_pages": 1,
    "has_next_page": false,
    "has_previous_page": false
  }
}

Offering Statuses (Public)

StatusDescription
openAccepting subscriptions
pausedTemporarily not accepting subscriptions
closedNo longer accepting subscriptions

Get Offering Details

curl https://api.rialto.com/issuance/offerings/<offering_id> \
  -H "Authorization: Bearer <rialto_access_token>"

The detail response extends the list item with:

FieldDescription
descriptionFull offering description
issuer.state_of_incorporationIssuer's state of incorporation
eligibility.accredited_onlyWhether only accredited investors can subscribe
eligibility.us_persons_onlyWhether limited to US persons
use_of_proceedsIntended use of funds raised

Exemption Types

Offerings are structured under SEC exemption types:

TypeDescription
reg_d_504Regulation D, Rule 504
reg_d_506bRegulation D, Rule 506(b)
reg_d_506cRegulation D, Rule 506(c) -- accredited only
reg_a_tier1Regulation A, Tier 1
reg_a_tier2Regulation A, Tier 2
reg_cfRegulation Crowdfunding
reg_sRegulation S (offshore)
section_4a2Section 4(a)(2) private placement
otherOther exemption

Offering Documents

Retrieve documents associated with an offering (PPM, subscription agreement, etc.):

curl https://api.rialto.com/issuance/offerings/<offering_id>/documents \
  -H "Authorization: Bearer <rialto_access_token>"

Response:

{
  "success": true,
  "data": [
    {
      "id": "c3d4e5f6-...",
      "type": "ppm",
      "name": "Private Placement Memorandum",
      "file_name": "acme-ppm-v2.pdf",
      "file_url": "https://cdn.rialto.com/docs/acme-ppm-v2.pdf",
      "file_size": 2048576,
      "required_for_subscription": true,
      "requires_signature": false,
      "effective_date": "2026-01-15",
      "created_at": "2026-01-10T00:00:00.000Z",
      "updated_at": "2026-01-10T00:00:00.000Z"
    }
  ]
}

Document Types

TypeDescription
ppmPrivate Placement Memorandum
subscription_agreementSubscription agreement (may require signature)
operating_agreementOperating agreement
investor_questionnaireInvestor questionnaire
risk_disclosureRisk disclosure statement
supplementOffering supplement
amendmentAmendment to existing document
form_dSEC Form D filing
form_cSEC Form C filing (Reg CF)
form_1aSEC Form 1-A filing (Reg A)
otherOther document type

Securities

Securities represent the investable units within an offering. Each offering can have multiple security classes (e.g., Class A Common Stock, Series A Preferred).

List Securities for an Offering

curl https://api.rialto.com/issuance/offerings/<offering_id>/securities \
  -H "Authorization: Bearer <rialto_access_token>"

Response:

{
  "success": true,
  "data": [
    {
      "id": "d4e5f6a7-...",
      "name": "Class A Common Stock",
      "category": "equity",
      "subcategory": "common_stock",
      "price_per_unit": "10.00",
      "units": {
        "authorized": "1000000",
        "issued": "250000",
        "available": "750000"
      },
      "purchase": {
        "minimum_units": "100",
        "maximum_units": "50000",
        "fractional_allowed": false
      },
      "eligibility": {
        "accredited_only": true
      },
      "status": "active",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-03-15T00:00:00.000Z"
    }
  ]
}

Browse All Securities

curl "https://api.rialto.com/issuance/securities?offering_id=<id>&category=equity&status=active" \
  -H "Authorization: Bearer <rialto_access_token>"

Query Parameters:

ParameterTypeDescription
offering_idUUIDFilter by offering
categorystringFilter by security category
statusstringactive or closed
Pagination--page, limit, sort_by, sort_order

Get Security Details

curl https://api.rialto.com/issuance/securities/<security_id> \
  -H "Authorization: Bearer <rialto_access_token>"

The detail response includes additional fields:

FieldDescription
units.outstandingCurrently held by investors
eligibility.transfer_restrictedWhether transfers are restricted
ats.eligibleEligible for alternative trading system
ats.enabledATS currently enabled

Security Categories

CategoryDescription
equityEquity securities (common stock, preferred stock)
debtDebt securities (notes, bonds)
security_convertibleConvertible notes, SAFEs
option_warrant_other_rightWarrants, stock options
pooled_investment_fund_interestsFund interests (LP, LLC)
tenant_in_commonTIC interests
mineral_propertyMineral property interests
otherOther security type

Security Subcategories

SubcategoryCategory
common_stockequity
preferred_stockequity
membership_interestequity
partnership_interestequity
senior_secureddebt
senior_unsecureddebt
subordinateddebt
convertible_notesecurity_convertible
safesecurity_convertible
warrantoption_warrant_other_right
stock_optionoption_warrant_other_right
lp_interestpooled_investment_fund_interests
llc_interestpooled_investment_fund_interests
otherany

Pagination

All list endpoints return paginated results with a meta object:

{
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 42,
    "total_pages": 3,
    "has_next_page": true,
    "has_previous_page": false
  }
}

On this page