---
title: "Search Ipo Entities"
method: POST
path: "/data/searches/ipos"
tags: ["Search"]
---

# Search Ipo Entities

`POST /data/searches/ipos`

Can perform more complex filtering based on the query defined in the request body

## Request body

- IpoEntitySearch — EntitySearch for Ipo search
  - `after_id` string, uuid — Used to paginate search results to the next page. after_id should be the uuid of the last item in the current page. May not be provided simultaneously with before_id.
  - `before_id` string, uuid — Used to paginate search results to the previous page. before_id should be the uuid of the first item in the current page. May not be provided simultaneously with after_id.
  - `field_ids` string[], required — The list of field_ids to include in the result
  - `limit` integer — Number of rows to return. Default is 100, min is 1, max is 1000.
  - `order` Order[] — Order in which the search results should be returned
    - `field_id` string, required — Name of the field to sort on
    - `nulls` 'first' | 'last'
    - `sort` 'asc' | 'desc', required
  - `query` Predicate[], required — Search query to perform on the designated entity
    - `field_id` string, required — The field to operate on
    - `operator_id` 'blank' | 'eq' | 'not_eq' | 'gt' | 'gte' | 'lt' | 'lte' | 'starts' | 'contains' | 'not_contains' | 'between' | 'includes' | 'not_includes' | 'includes_all' | 'not_includes_all' | 'domain_eq' | 'not_domain_eq' | 'domain_blank' | 'domain_includes' | 'not_domain_includes', required — Search operations for use in predicates * between - Between. Provide two values in "values" * blank - Is blank. Possible values in "values" is "true" or "false" * contains - Contains * domain_blank - Domain is blank. Possible values in "values" is "true" or "false" * domain_eq - Domain equals * domain_includes - Domain includes any * eq - Equals * gt - Greater than * gte - Greater than or equal to * includes - Includes any * includes_all - Includes all * lt - Less than * lte - Less than or equal to * not_contains - Does not contain * not_domain_eq - Domain not equal * not_domain_includes - Domain does not include * not_eq - Does not equal * not_includes - Does not include * not_includes_all - Does not include all * starts - Starts with
    - `type` 'predicate', required — The type of the query (Predicate)
    - `values` union[] — Values array with data type matching field_id type
      - union
        - string
        - number
        - boolean

## Response `200`

Results are identifiers matching the search query

- object — Search results include Ipo entities
  - `count` integer — Total number of Ipo entities
  - `entities` object[] — List of Ipo entities
    - `properties` Ipo
      - `amount_raised` Money — A field containing data that represents some amount of money
        - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SKK' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XAG' | 'XAU' | 'XBA' | 'XBB' | 'XBC' | 'XBD' | 'XCD' | 'XDR' | 'XOF' | 'XPD' | 'XPF' | 'XPT' | 'xts' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW', required — Currency codes
        - `value` number, required
        - `value_usd` number
      - `created_at` string, date-time
      - `delisted_on` DateWithPrecision — A field that will contain date information up to a certain level of precision. E.g. month, day, etc.
        - `precision` 'none' | 'year' | 'month' | 'day', required
        - `value` string, date
      - `entity_def_id` 'ipo' — * ipo - Ipo
      - `identifier` EntityIdentifier, required — Every entity in the system has a unique identifier that contains all necessary properties to represent it.
        - `entity_def_id` 'acquisition' | 'address' | 'award' | 'category' | 'category_group' | 'market_insight' | 'market_insight_reason' | 'degree' | 'diversity_spotlight' | 'event' | 'event_appearance' | 'fund' | 'funding_round' | 'growth_insight' | 'investment' | 'investor_insight' | 'investor_match' | 'ipo' | 'job' | 'key_employee_change' | 'layoff' | 'legal_proceeding' | 'location' | 'micro_category' | 'organization' | 'org_similarity' | 'product_similarity' | 'ownership' | 'partnership_announcement' | 'person' | 'press_reference' | 'product' | 'product_launch' | 'research_insight', required
        - `image_id` string
        - `permalink` string
        - `uuid` string, uuid, required — Universally Unique Identifier
        - `value` string
      - `image_id` string
      - `organization_identifier` EntityIdentifier — Every entity in the system has a unique identifier that contains all necessary properties to represent it.
        - `entity_def_id` 'acquisition' | 'address' | 'award' | 'category' | 'category_group' | 'market_insight' | 'market_insight_reason' | 'degree' | 'diversity_spotlight' | 'event' | 'event_appearance' | 'fund' | 'funding_round' | 'growth_insight' | 'investment' | 'investor_insight' | 'investor_match' | 'ipo' | 'job' | 'key_employee_change' | 'layoff' | 'legal_proceeding' | 'location' | 'micro_category' | 'organization' | 'org_similarity' | 'product_similarity' | 'ownership' | 'partnership_announcement' | 'person' | 'press_reference' | 'product' | 'product_launch' | 'research_insight', required
        - `image_id` string
        - `permalink` string
        - `uuid` string, uuid, required — Universally Unique Identifier
        - `value` string
      - `permalink` string
      - `rank` number — Algorithmic rank assigned to the top profiles on Crunchbase
      - `rank_ipo` number — Algorithmic rank assigned to the top 100,000 most active IPOs
      - `sentiment` 'c100_positive' | 'c200_neutral' | 'c300_negative' — Sentiment associated with IPO * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative
      - `share_price` MoneyDecimal — A field containing decimal data that represents some amount of money
        - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SKK' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XAG' | 'XAU' | 'XBA' | 'XBB' | 'XBC' | 'XBD' | 'XCD' | 'XDR' | 'XOF' | 'XPD' | 'XPF' | 'XPT' | 'xts' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW', required — Currency codes
        - `value` number, double, required
        - `value_usd` number, double
      - `shares_outstanding` number — Number of shares that were outstanding at the time of IPO
      - `shares_sold` number — Number of shares sold at the time of IPO
      - `short_description` string
      - `stock_exchange_symbol` 'adx' | 'afx' | 'altx' | 'amx' | 'amex' | 'ams' | 'asce' | 'asx' | 'ath' | 'bcba' | 'bdp' | 'belex' | 'ber' | 'bfb' | 'bit' | 'bkk' | 'blse' | 'bme' | 'bmv' | 'bom' | 'brvm' | 'bse' | 'bse_lb' | 'bsse' | 'bsx' | 'bvb' | 'bvc' | 'bvfb' | 'bvm' | 'bvmf' | 'bvmt' | 'bx' | 'cas' | 'cise' | 'cnsx' | 'col' | 'cph' | 'cse' | 'cse_cy' | 'csx' | 'dfm' | 'dse' | 'dsx' | 'dus' | 'ebr' | 'egx' | 'eli' | 'epa' | 'etr' | 'eurex' | 'fra' | 'fwb' | 'gha' | 'gsx' | 'gsx_gi' | 'hel' | 'hkg' | 'hnx' | 'hose' | 'ice' | 'idx' | 'iex' | 'ifb' | 'ime' | 'irenex' | 'ise' | 'ist' | 'isx' | 'jp' | 'jsc' | 'jse' | 'jse_jam' | 'kase' | 'klse' | 'kosdaq' | 'krx' | 'kse' | 'lje' | 'lse' | 'lsm' | 'lsx' | 'luse' | 'luxse' | 'mal' | 'mcx' | 'meff' | 'mnse' | 'moex' | 'mse' | 'mse_md' | 'mse_mk' | 'msei' | 'msm' | 'mun' | 'nasdaq' | 'nbo' | 'nex' | 'nepse' | 'neeq' | 'ngm' | 'nig' | 'notc' | 'npex' | 'nse' | 'nsx' | 'nyse' | 'nysearca' | 'nysemkt' | 'nze' | 'ose' | 'otcbb' | 'otcpink' | 'otcqb' | 'otcqx' | 'pdex' | 'pex' | 'pfts' | 'pomsox' | 'prg' | 'pse' | 'psx' | 'qse' | 'rfb' | 'rse' | 'rsebl' | 'sase' | 'sbx' | 'sehk' | 'sem' | 'sgbv' | 'sgx' | 'six' | 'spbex' | 'spse' | 'sse' | 'ssx' | 'sto' | 'stu' | 'swx' | 'szse' | 'tal' | 'tfex' | 'tise' | 'tlv' | 'tpe' | 'tse_al' | 'tse_ir' | 'tsec' | 'tsx' | 'cve' | 'tyo' | 'ttse' | 'tadawul' | 'use' | 'ux' | 'vie' | 'vmf' | 'vse' | 'wse' | 'ysx' | 'zamace' | 'zse' | 'zse_hr' — Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ) * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange
      - `stock_full_symbol` string
      - `stock_symbol` string — Stock ticker symbol (e.g. AAPL, FB, TWTR)
      - `updated_at` string, date-time
      - `uuid` string, uuid
      - `valuation` Money — A field containing data that represents some amount of money
        - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SKK' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XAG' | 'XAU' | 'XBA' | 'XBB' | 'XBC' | 'XBD' | 'XCD' | 'XDR' | 'XOF' | 'XPD' | 'XPF' | 'XPT' | 'xts' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW', required — Currency codes
        - `value` number, required
        - `value_usd` number
      - `went_public_on` string, date — Date the Organization went public
    - `uuid` string, uuid — UUID of the entity

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `500` — Request Failed

---

[API](https://skmtc.net/crunchbase/apis/firmographic-package.md) · [All operations](https://skmtc.net/crunchbase/apis/firmographic-package/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/crunchbase/firmographic-package/revisions/3277c0d3e46a/schema)
