CompaniesAndSecuritiesWebService


Click here for a complete list of operations.

ListSecurities

List all the securities

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
StartSymbol:
EndSymbol:
Segment:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /BSEFinancialsWS/companiesandsecurities.asmx HTTP/1.1
Host: www.rasd.ro
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.bvb.ro/ListSecurities"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ListSecurities xmlns="http://www.bvb.ro">
      <StartSymbol>string</StartSymbol>
      <EndSymbol>string</EndSymbol>
      <Segment>BSE or BER</Segment>
    </ListSecurities>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ListSecuritiesResponse xmlns="http://www.bvb.ro">
      <ListSecuritiesResult>
        <Security>
          <Symbol>string</Symbol>
          <Name>string</Name>
          <ISIN>string</ISIN>
          <Localization>
            <Segment>BSE or BER</Segment>
            <Type>string</Type>
            <MainMarket>string</MainMarket>
            <Tier>string</Tier>
            <Status>Tradeble or Suspended or Delisted</Status>
          </Localization>
        </Security>
        <Security>
          <Symbol>string</Symbol>
          <Name>string</Name>
          <ISIN>string</ISIN>
          <Localization>
            <Segment>BSE or BER</Segment>
            <Type>string</Type>
            <MainMarket>string</MainMarket>
            <Tier>string</Tier>
            <Status>Tradeble or Suspended or Delisted</Status>
          </Localization>
        </Security>
      </ListSecuritiesResult>
    </ListSecuritiesResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /BSEFinancialsWS/companiesandsecurities.asmx HTTP/1.1
Host: www.rasd.ro
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <ListSecurities xmlns="http://www.bvb.ro">
      <StartSymbol>string</StartSymbol>
      <EndSymbol>string</EndSymbol>
      <Segment>BSE or BER</Segment>
    </ListSecurities>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <ListSecuritiesResponse xmlns="http://www.bvb.ro">
      <ListSecuritiesResult>
        <Security>
          <Symbol>string</Symbol>
          <Name>string</Name>
          <ISIN>string</ISIN>
          <Localization>
            <Segment>BSE or BER</Segment>
            <Type>string</Type>
            <MainMarket>string</MainMarket>
            <Tier>string</Tier>
            <Status>Tradeble or Suspended or Delisted</Status>
          </Localization>
        </Security>
        <Security>
          <Symbol>string</Symbol>
          <Name>string</Name>
          <ISIN>string</ISIN>
          <Localization>
            <Segment>BSE or BER</Segment>
            <Type>string</Type>
            <MainMarket>string</MainMarket>
            <Tier>string</Tier>
            <Status>Tradeble or Suspended or Delisted</Status>
          </Localization>
        </Security>
      </ListSecuritiesResult>
    </ListSecuritiesResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /BSEFinancialsWS/companiesandsecurities.asmx/ListSecurities?StartSymbol=string&EndSymbol=string&Segment=string HTTP/1.1
Host: www.rasd.ro
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfSecurity xmlns="http://www.bvb.ro">
  <Security>
    <Symbol>string</Symbol>
    <Name>string</Name>
    <ISIN>string</ISIN>
    <Localization>
      <Segment>BSE or BER</Segment>
      <Type>string</Type>
      <MainMarket>string</MainMarket>
      <Tier>string</Tier>
      <Status>Tradeble or Suspended or Delisted</Status>
    </Localization>
  </Security>
  <Security>
    <Symbol>string</Symbol>
    <Name>string</Name>
    <ISIN>string</ISIN>
    <Localization>
      <Segment>BSE or BER</Segment>
      <Type>string</Type>
      <MainMarket>string</MainMarket>
      <Tier>string</Tier>
      <Status>Tradeble or Suspended or Delisted</Status>
    </Localization>
  </Security>
</ArrayOfSecurity>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /BSEFinancialsWS/companiesandsecurities.asmx/ListSecurities HTTP/1.1
Host: www.rasd.ro
Content-Type: application/x-www-form-urlencoded
Content-Length: length

StartSymbol=string&EndSymbol=string&Segment=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfSecurity xmlns="http://www.bvb.ro">
  <Security>
    <Symbol>string</Symbol>
    <Name>string</Name>
    <ISIN>string</ISIN>
    <Localization>
      <Segment>BSE or BER</Segment>
      <Type>string</Type>
      <MainMarket>string</MainMarket>
      <Tier>string</Tier>
      <Status>Tradeble or Suspended or Delisted</Status>
    </Localization>
  </Security>
  <Security>
    <Symbol>string</Symbol>
    <Name>string</Name>
    <ISIN>string</ISIN>
    <Localization>
      <Segment>BSE or BER</Segment>
      <Type>string</Type>
      <MainMarket>string</MainMarket>
      <Tier>string</Tier>
      <Status>Tradeble or Suspended or Delisted</Status>
    </Localization>
  </Security>
</ArrayOfSecurity>