Beneficial Ownership (SC 13D, SC 13G) Data API

Significant Ownership and Control

All SC 13D and SC 13G filings since 2013 (10+ years)
Updated as filings are made
Over 20,000 new records per year

The Beneficial Ownership Data API endpoints provide developers with a straightforward way to query and access data from SEC Form SC 13D and SC 13G filings. These endpoints allow you to search for filings using data points such as filing date, CIK identifier of the beneficial owner, or the percentage of ownership. The endpoints return structured JSON data for easy integration into your application.

API Endpoint

https://api.fincoded.com/v1/sc-13

Supported HTTP methods: GET
Response content type: JSON

Use the API key on your user dashboard to authenticate your requests, using the key=[YOUR_API_KEY] query parameter:

https://api.fincoded.com/v1/sc-13?key=[YOUR_API_KEY]

Request Parameters

You can query the endpoints by any data from the SC 13 cover page (eg Issuer CUSIP), reporting person list (eg number of shares owned), or filing/subject company metadata (eg subject company CIK); see the Response Data Model below for a full list of available properties.

Request Parameters
Standard query parameters, all optional. See the API introduction for more details.
  • property[operator]value: Filter the data based on various data model properties, operators (=, <=, >=, !=, <, >) and values.
  • page: The page number for the set of results you want to retrieve.
  • count: The number of results per page.
  • sortBy: The field you want to sort the results by, in full dotted JSON path syntax.
  • sortOrder: The order you want to sort the results, asc for ascending and desc for descending order.
  • subdocuments: When set to true, for endpoints that contain subdocuments for each result (eg informationTable holdings in 13F data), limit these subdocuments to those that match the subdocument filter conditions.
Request Examples

Find all beneficial ownership filings for Ocean Pal Common Stock (CUSIP Y6430L202) with ownership of more than 10%.

https://api.fincoded.com/v1/sc-13?coverPage.issuerCUSIP=Y6430L202&reportingPersons.percentOfClass>=10

Find SC 13G filings only, filed by BlackRock Inc (CIK 0001364742).

https://api.fincoded.com/v1/sc-13?filer.cik=0001364742&submissionType=SC%2013G

Response Data Model

Response type: JSON

Note that two of the CIK based properties (coverPage.issuerCIK and reportingPersons.reportingPersonCIK) are rarely available – these are forward-compatible fields for XML-based SC13 filings to be introduced in 2024 only. If you need to query this kind of data, please use the properties extracted from the filing metadata: filer.cik and subjectCompany.cik which are available for every data record.

Property Type Enum Values Path
sourceReference object sourceReference
source string
filing
sourceReference.source
filename string sourceReference.filename
url string sourceReference.url
date date sourceReference.date
ciks string[] sourceReference.ciks
coverPage object coverPage
securitiesClassTitle string coverPage.securitiesClassTitle
dateOfEvent date coverPage.dateOfEvent
issuerCIK string coverPage.issuerCIK
issuerCUSIP string coverPage.issuerCUSIP
issuerName string coverPage.issuerName
reportingPersons object[] reportingPersons
reportingPersonCIK string[] reportingPersons.reportingPersonCIK
reportingPersonName string[] reportingPersons.reportingPersonName
memberOfGroup string
a
b
reportingPersons.memberOfGroup
fundType string[] reportingPersons.fundType
legalProceedings boolean reportingPersons.legalProceedings
citizenshipOrOrganization string reportingPersons.citizenshipOrOrganization
soleVotingPower number reportingPersons.soleVotingPower
sharedVotingPower number reportingPersons.sharedVotingPower
soleDispositivePower number reportingPersons.soleDispositivePower
sharedDispositivePower number reportingPersons.sharedDispositivePower
aggregateAmountOwned number reportingPersons.aggregateAmountOwned
isAggregateExcludeShares boolean reportingPersons.isAggregateExcludeShares
percentOfClass number reportingPersons.percentOfClass
typeOfReportingPerson string[] reportingPersons.typeOfReportingPerson
submissionType string
SC 13D
SC 13D/A
SC 13G
SC 13G/A
submissionType
filer object filer
cik string filer.cik
name string filer.name
fileNumber string filer.fileNumber
subjectCompany object subjectCompany
cik string subjectCompany.cik
name string subjectCompany.name
fileNumber string subjectCompany.fileNumber

Response Example

{
  "data": [
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001437749-24-009204.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1591173/0001437749-24-009204.txt",
        "date": "2024-03-25T19:05:24.000Z",
        "ciks": [
          "1045942"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Common Stock, $0.0001 par value",
        "dateOfEvent": "2024-03-19T04:00:00.000Z",
        "issuerCUSIP": "81373R109",
        "issuerName": "Track Group, Inc."
      },
      "filer": {
        "cik": "0001591173",
        "name": "Conrent Invest S.A."
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "Conrent Invest S.A. acting in the name and on behalf of its compartment “Track-PPN” (1)"
          ],
          "fundType": [
            "OO"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 1445697,
          "sharedVotingPower": 0,
          "soleDispositivePower": 1445697,
          "sharedDispositivePower": 0,
          "aggregateAmountOwned": 1445697,
          "isAggregateExcludeShares": false,
          "percentOfClass": 12.2,
          "typeOfReportingPerson": [
            "CO"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001045942",
        "name": "Track Group, Inc.",
        "fileNumber": "005-59189"
      },
      "submissionType": "SC 13D/A"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001193125-24-075939.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1771172/0001193125-24-075939.txt",
        "date": "2024-03-25T11:45:26.000Z",
        "ciks": [
          "1712189"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Common Stock, par value $0.0001 per share",
        "dateOfEvent": "2024-03-24T04:00:00.000Z",
        "issuerCUSIP": "87615L107",
        "issuerName": "Target Hospitality Corp."
      },
      "filer": {
        "cik": "0001771172",
        "name": "TDR Capital II Investments LP"
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "Manjit Dale"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "United Kingdom",
          "soleVotingPower": 0,
          "sharedVotingPower": 64602717,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 64602717,
          "aggregateAmountOwned": 64602717,
          "isAggregateExcludeShares": false,
          "percentOfClass": 64.3,
          "typeOfReportingPerson": [
            "IN"
          ]
        },
        {
          "reportingPersonName": [
            "Gary Lindsay"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "United Kingdom",
          "soleVotingPower": 0,
          "sharedVotingPower": 64602717,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 64602717,
          "aggregateAmountOwned": 64602717,
          "isAggregateExcludeShares": false,
          "percentOfClass": 64.3,
          "typeOfReportingPerson": [
            "IN"
          ]
        },
        {
          "reportingPersonName": [
            "Thomas Mitchell"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "United Kingdom",
          "soleVotingPower": 0,
          "sharedVotingPower": 64602717,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 64602717,
          "aggregateAmountOwned": 64602717,
          "isAggregateExcludeShares": false,
          "percentOfClass": 64.3,
          "typeOfReportingPerson": [
            "IN"
          ]
        },
        {
          "reportingPersonName": [
            "TDR Capital LLP"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "United Kingdom",
          "soleVotingPower": 0,
          "sharedVotingPower": 64602717,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 64602717,
          "aggregateAmountOwned": 64602717,
          "isAggregateExcludeShares": false,
          "percentOfClass": 64.3,
          "typeOfReportingPerson": [
            "PN"
          ]
        },
        {
          "reportingPersonName": [
            "TDR Capital II Investments L.P"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "United Kingdom",
          "soleVotingPower": 0,
          "sharedVotingPower": 64602717,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 64602717,
          "aggregateAmountOwned": 64602717,
          "isAggregateExcludeShares": false,
          "percentOfClass": 64.3,
          "typeOfReportingPerson": [
            "PN"
          ]
        },
        {
          "reportingPersonName": [
            "Sapphire Holding S.&agrave; r.l"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 48973852,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 48973852,
          "aggregateAmountOwned": 48973852,
          "isAggregateExcludeShares": false,
          "percentOfClass": 48.7,
          "typeOfReportingPerson": [
            "OO"
          ]
        },
        {
          "reportingPersonName": [
            "Arrow Holdings S.&agrave; r.l"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 48973852,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 48973852,
          "aggregateAmountOwned": 48973852,
          "isAggregateExcludeShares": false,
          "percentOfClass": 48.7,
          "typeOfReportingPerson": [
            "OO"
          ]
        },
        {
          "reportingPersonName": [
            "Modulaire Holding S.&agrave; r.l. (fka Algeco Holding S.&agrave; r.l.)"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 15628865,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 15628865,
          "aggregateAmountOwned": 15628865,
          "isAggregateExcludeShares": false,
          "percentOfClass": 15.5,
          "typeOfReportingPerson": [
            "OO"
          ]
        },
        {
          "reportingPersonName": [
            "MFA Limited Partnership SLP (fka Algeco Limited Partnership SLP)"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 15628865,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 15628865,
          "aggregateAmountOwned": 15628865,
          "isAggregateExcludeShares": false,
          "percentOfClass": 15.5,
          "typeOfReportingPerson": [
            "OO"
          ]
        },
        {
          "reportingPersonName": [
            "MFA Global S.&agrave; r.l. (fka Algeco Global S.&agrave; r.l.)"
          ],
          "fundType": [
            "WC"
          ],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 15628865,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 15628865,
          "aggregateAmountOwned": 15628865,
          "isAggregateExcludeShares": false,
          "percentOfClass": 15.5,
          "typeOfReportingPerson": [
            "OO"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001712189",
        "name": "Target Hospitality Corp.",
        "fileNumber": "005-90263"
      },
      "submissionType": "SC 13D/A"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001178913-24-001049.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1398346/0001178913-24-001049.txt",
        "date": "2024-03-25T11:41:31.000Z",
        "ciks": [
          "1045986"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Ordinary Shares, NIS 1 par value",
        "dateOfEvent": "2024-03-20T04:00:00.000Z",
        "issuerName": "FORMULA SYSTEMS (1985) LTD."
      },
      "filer": {
        "cik": "0001398346",
        "name": "MEITAV INVESTMENT HOUSE LTD"
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "MEITAV INVESTMENT HOUSE LTD"
          ],
          "memberOfGroup": "b",
          "fundType": [],
          "citizenshipOrOrganization": "Israel",
          "sharedVotingPower": 769234,
          "sharedDispositivePower": 769234,
          "aggregateAmountOwned": 769234,
          "isAggregateExcludeShares": false,
          "percentOfClass": 5.01,
          "typeOfReportingPerson": [
            "CO"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001045986",
        "name": "FORMULA SYSTEMS (1985) LTD",
        "fileNumber": "005-56313"
      },
      "submissionType": "SC 13G/A"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001104659-24-038196.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1954863/0001104659-24-038196.txt",
        "date": "2024-03-25T12:58:35.000Z",
        "ciks": [
          "1769484"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Ordinary Shares, $0.0001 par value",
        "dateOfEvent": "2024-03-14T04:00:00.000Z",
        "issuerCUSIP": "G1117K114",
        "issuerName": "Bioceres Crop Solutions Corp."
      },
      "filer": {
        "cik": "0001954863",
        "name": "Bioceres Group PLC"
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "Bioceres Group PLC"
          ],
          "fundType": [],
          "legalProceedings": false,
          "citizenshipOrOrganization": "England and Wales",
          "soleVotingPower": 1927391,
          "sharedVotingPower": 28903241,
          "soleDispositivePower": 1927391,
          "sharedDispositivePower": 25736096,
          "aggregateAmountOwned": 30830632,
          "isAggregateExcludeShares": false,
          "percentOfClass": 49.1,
          "typeOfReportingPerson": [
            "HC"
          ]
        },
        {
          "reportingPersonName": [
            "Bioceres LLC"
          ],
          "fundType": [],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Delaware",
          "sharedVotingPower": 23903241,
          "sharedDispositivePower": 20736096,
          "aggregateAmountOwned": 23903241,
          "isAggregateExcludeShares": false,
          "percentOfClass": 38.1,
          "typeOfReportingPerson": [
            "HC"
          ]
        },
        {
          "reportingPersonName": [
            "THEO I SCSp"
          ],
          "fundType": [],
          "legalProceedings": false,
          "citizenshipOrOrganization": "Grand Duchy of Luxembourg",
          "sharedVotingPower": 5000000,
          "sharedDispositivePower": 5000000,
          "aggregateAmountOwned": 5000000,
          "isAggregateExcludeShares": false,
          "percentOfClass": 8,
          "typeOfReportingPerson": [
            "HC"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001769484",
        "name": "Bioceres Crop Solutions Corp.",
        "fileNumber": "005-90962"
      },
      "submissionType": "SC 13D/A"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001213900-24-025309.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1952100/0001213900-24-025309.txt",
        "date": "2024-03-25T13:12:49.000Z",
        "ciks": [
          "1589149"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Common Shares",
        "dateOfEvent": "2024-03-22T04:00:00.000Z",
        "issuerCUSIP": "57630J304",
        "issuerName": "Greenwave Technology Solutions, Inc."
      },
      "filer": {
        "cik": "0001952100",
        "name": "Reda Joseph"
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "Joseph Reda"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "U.S.",
          "soleVotingPower": 3500000,
          "soleDispositivePower": 3500000,
          "aggregateAmountOwned": 3500000,
          "percentOfClass": 9.119,
          "typeOfReportingPerson": [
            "IN"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001589149",
        "name": "Greenwave Technology Solutions, Inc.",
        "fileNumber": "005-89387"
      },
      "submissionType": "SC 13G"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001968076-24-000010.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1968076/0001968076-24-000010.txt",
        "date": "2024-03-25T14:26:04.000Z",
        "ciks": [
          "1378590"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Common Stock, par value $0.001 per share",
        "dateOfEvent": "2024-03-19T04:00:00.000Z",
        "issuerCUSIP": "10807Q700",
        "issuerName": "BRIDGELINE DIGITAL, INC."
      },
      "filer": {
        "cik": "0001968076",
        "name": "Jacobsen Per A."
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "Per A. Jacobsen"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Maryland",
          "soleVotingPower": 757500,
          "sharedVotingPower": 0,
          "soleDispositivePower": 757500,
          "sharedDispositivePower": 0,
          "aggregateAmountOwned": 757500,
          "isAggregateExcludeShares": false,
          "percentOfClass": 7.2,
          "typeOfReportingPerson": [
            "IN"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001378590",
        "name": "Bridgeline Digital, Inc.",
        "fileNumber": "005-82964"
      },
      "submissionType": "SC 13G/A"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001104659-24-038246.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1855474/0001104659-24-038246.txt",
        "date": "2024-03-25T15:04:30.000Z",
        "ciks": [
          "1855474"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Class A Common Stock",
        "dateOfEvent": "2024-03-14T04:00:00.000Z",
        "issuerCUSIP": "612160101",
        "issuerName": "Montana Technologies Corporation"
      },
      "filer": {
        "cik": "0001296324",
        "name": "PALLOTTA JAMES J"
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "James J. Pallotta"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Florida",
          "soleVotingPower": 3507095,
          "sharedVotingPower": 0,
          "soleDispositivePower": 3507095,
          "sharedDispositivePower": 0,
          "aggregateAmountOwned": 3507095,
          "isAggregateExcludeShares": false,
          "percentOfClass": 7.15,
          "typeOfReportingPerson": [
            "IN"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001855474",
        "name": "Montana Technologies Corp.",
        "fileNumber": "005-93201"
      },
      "submissionType": "SC 13G"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001104659-24-038400.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1830842/0001104659-24-038400.txt",
        "date": "2024-03-25T19:35:52.000Z",
        "ciks": [
          "1739174"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "Common Stock, par value $0.0001 per share",
        "dateOfEvent": "2024-03-15T04:00:00.000Z",
        "issuerCUSIP": "09090D103",
        "issuerName": "BiomX Inc."
      },
      "filer": {
        "cik": "0001830842",
        "name": "AMR Action Fund, L.P."
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "AMR Action Fund, L.P"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Delaware",
          "soleVotingPower": 0,
          "sharedVotingPower": 3054870,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 3054870,
          "aggregateAmountOwned": 3054870,
          "isAggregateExcludeShares": false,
          "percentOfClass": 5.5,
          "typeOfReportingPerson": [
            "PN"
          ]
        },
        {
          "reportingPersonName": [
            "AMR Action Fund GP, LLC"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Delaware",
          "soleVotingPower": 0,
          "sharedVotingPower": 3054870,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 3054870,
          "aggregateAmountOwned": 3054870,
          "isAggregateExcludeShares": false,
          "percentOfClass": 5.5,
          "typeOfReportingPerson": [
            "OO"
          ]
        },
        {
          "reportingPersonName": [
            "AMR Action Fund, SCSp"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 3054870,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 3054870,
          "aggregateAmountOwned": 3054870,
          "isAggregateExcludeShares": false,
          "percentOfClass": 5.5,
          "typeOfReportingPerson": [
            "PN"
          ]
        },
        {
          "reportingPersonName": [
            "AMR Action Fund, S.a r.l"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Luxembourg",
          "soleVotingPower": 0,
          "sharedVotingPower": 3054870,
          "soleDispositivePower": 0,
          "sharedDispositivePower": 3054870,
          "aggregateAmountOwned": 3054870,
          "isAggregateExcludeShares": false,
          "percentOfClass": 5.5,
          "typeOfReportingPerson": [
            "OO"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001739174",
        "name": "BiomX Inc.",
        "fileNumber": "005-90744"
      },
      "submissionType": "SC 13G"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001079973-24-000418.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1702202/0001079973-24-000418.txt",
        "date": "2024-03-25T20:01:14.000Z",
        "ciks": [
          "1346610"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "American Depository Shares, representing Class A Ordinary Shares, par value $0.005",
        "dateOfEvent": "2024-03-13T04:00:00.000Z",
        "issuerCUSIP": "83587W205",
        "issuerName": "SOS Limited"
      },
      "filer": {
        "cik": "0001702202",
        "name": "L1 Capital Global Opportunities Master Fund, Ltd."
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "L1 Capital Global Opportunities Master Fund, Ltd"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Cayman Islands ",
          "soleVotingPower": 1744444,
          "sharedVotingPower": 0,
          "soleDispositivePower": 1744444,
          "sharedDispositivePower": 0,
          "aggregateAmountOwned": 1744444,
          "isAggregateExcludeShares": false,
          "percentOfClass": 9.97,
          "typeOfReportingPerson": []
        }
      ],
      "subjectCompany": {
        "cik": "0001346610",
        "name": "SOS Ltd",
        "fileNumber": "005-90300"
      },
      "submissionType": "SC 13G"
    },
    {
      "sourceReference": {
        "source": "filing",
        "filename": "0001079973-24-000420.txt",
        "url": "https://www.sec.gov/Archives/edgar/data/1346610/0001079973-24-000420.txt",
        "date": "2024-03-25T20:01:15.000Z",
        "ciks": [
          "1346610"
        ]
      },
      "coverPage": {
        "securitiesClassTitle": "American Depository Shares, representing Class A Ordinary Shares, par value $0.005",
        "dateOfEvent": "2024-03-13T04:00:00.000Z",
        "issuerCUSIP": "83587W205",
        "issuerName": "SOS Limited"
      },
      "filer": {
        "cik": "0001890802",
        "name": "S.H.N. Financial Investments Ltd."
      },
      "reportingPersons": [
        {
          "reportingPersonName": [
            "S.H.N. Financial Investments Ltd"
          ],
          "fundType": [],
          "citizenshipOrOrganization": "Israel ",
          "soleVotingPower": 1744444,
          "sharedVotingPower": 0,
          "soleDispositivePower": 1744444,
          "sharedDispositivePower": 0,
          "aggregateAmountOwned": 1744444,
          "isAggregateExcludeShares": false,
          "percentOfClass": 9.97,
          "typeOfReportingPerson": [
            "OO"
          ]
        }
      ],
      "subjectCompany": {
        "cik": "0001346610",
        "name": "SOS Ltd",
        "fileNumber": "005-90300"
      },
      "submissionType": "SC 13G"
    }
  ],
  "metadata": {
    "total": 983,
    "count": 10,
    "page": 1,
    "pages": 99
  }
}