Skip to main content
GET
/
v1
/
stock
/
lobbying
Lobbying
curl --request GET \
  --url https://api.aries.com/v1/stock/lobbying \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "clientId": "103979",
      "country": "US",
      "date": "",
      "description": "",
      "documentUrl": "https://lda.senate.gov/filings/public/filing/cad6db2f-c3ca-4b9d-bc24-4c56fc7eaadb/print/",
      "expenses": 1450000,
      "houseregistrantId": "31450",
      "name": "APPLE INC",
      "period": "Q4",
      "postedName": "",
      "registrantId": "4152",
      "senateId": "4152-103979",
      "symbol": "AAPL",
      "year": 2020
    }
  ],
  "symbol": "AAPL"
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. AAPL).
fromstringYesFrom date YYYY-MM-DD.
tostringYesTo date YYYY-MM-DD.

Response

Success returns 200 OK with a JSON object containing a data array of lobbying records (e.g. symbol, name, description, year, period, documentUrl, income, expenses), and symbol. Errors: 400 when symbol or dates are missing, 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbol
string
required

Stock ticker symbol

from
string<date>
required

From date YYYY-MM-DD

to
string<date>
required

To date YYYY-MM-DD

Response

Successful response

data
object[]
symbol
string