Documentation

ACHTUNG: Bitte berücksichtigen Sie, dass die Inhalte, die Sie via API beziehen und veröffentlichen, mit den Originalmeldungen im Presseportal verlinkt werden müssen. (Mehr)

Investor Relations news for a specific company


URL Scheme
/ir/company/id/list

Arguments

name type description default
id int id of the company required
list string investor relations news type required

URL Parameters

name type description default
api_key string your api_key required
format string output format xml/json xml
start int start/offset of the result article list 0
limit int limit of articles in response 50
teaser int stories with teaser instead of fulltext 0
lang string language of the stories de

Response

name type description
success int Successful request 1/0
error array If error was not successfull, ths node contains error code and error msg
request array Informations about the request, when successfull
company array Informations about the company
content array List of stories, only when request successfull
  story array Story data, see here for the details of the story node

Request example

http://api.presseportal.de/api/ir/company/31522/all?api_key=yourapikey
http://api.presseportal.de/api/ir/company/23223/easy_adhoc?api_key=yourapikey

Response example

<?xml version="1.0" encoding="UTF-8"?>
<response>
    <success>1</success>
    <request>
        <uri>http://api.presseportal.de/api/ir/company/31522/all</uri>
        <start>0</start>
        <limit>20</limit>
        <format>xml</format>
        <ir>all</ir>
        <lang>de</lang>
        <company>31522</company>
    </request>
    <company>
        <id>31522</id>
        <url>http://www.presseportal.de/pm/31522/fraport_ag/api</url>
        <name>Fraport AG</name>
        <isin>DE0005773303</isin>
        <wkn>577330</wkn>
    </company>
    <content>
        <story>
            <id>1506238</id>
            <url>http://www.presseportal.de/pm/31522/1506238/fraport_ag/api</url>
            <title>ERS: Fraport AG / 9-Monatsbericht 2009</title>
            <body>Fraport AG / 9-Monatsbericht 2009 / ERS-Dokument übermittelt von news
        aktuell an das Exchange Reporting System (ERS) der FWB/Deutsche Börse
        AG gemäß §§ 65 ff Börsenordnung.

        Folgende PDF-Dokumente liegen vor:
        - 9-Monatsbericht deutsch
        - 9-Monatsbericht englisch

        --------------------------------------------------------------------------------</body>
            <published>2009-11-05T08:59:32+0100</published>
            <language>de</language>
            <ressort>Finanzen</ressort>
            <keywords/>
            <media>
                <document>
                    <id>134039</id>
                    <name>de0005773303-q3-2009-na-d-00.pdf</name>
                    <url>http://www.presseportal.de/showbin.htx?id=134039&amp;type=document&amp;action=download&amp;attname=de0005773303-q3-2009-na-d-00.pdf</url>
                    <size>223</size>
                    <mime>application/pdf</mime>
                    <type>document</type>
                </document>
                <document>
                    <id>134040</id>
                    <name>de0005773303-q3-2009-na-e-00.pdf</name>
                    <url>http://www.presseportal.de/showbin.htx?id=134040&amp;type=document&amp;action=download&amp;attname=de0005773303-q3-2009-na-e-00.pdf</url>
                    <size>214</size>
                    <mime>application/pdf</mime>
                    <type>document</type>
                </document>
            </media>
        </story>
        <story>
            ...
        </story>
    </content>
</response>