Skip to main content
GET
/
v1
/
corporate-actions
/
spinoffs
Get Corporate Spinoffs
curl --request GET \
  --url https://api.aries.com/v1/corporate-actions/spinoffs \
  --header 'Authorization: Bearer <token>'
{
  "spinoffs": [
    {
      "exDate": "2020-10-15",
      "paymentDate": "2020-10-15",
      "recordDate": "2020-10-14",
      "declaredDate": "2020-09-01",
      "ratio": "1:1",
      "fromSymbol": "ILZ.XFRA",
      "fromCompanyName": "Ilztal AG",
      "toSymbol": "NEWCO",
      "toCompanyName": "New Company Inc",
      "description": "Spinoff of subsidiary operations"
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

identifier
string
required

Identifier value for the company you're querying. The format depends on identifierType:

  • Symbol — exchange ticker (e.g. AAPL).
  • CUSIP — 9-character U.S./Canadian identifier (e.g. 037833100).
  • ISIN — 12-character international identifier (e.g. US0378331005).
  • SEDOL — 7-character UK identifier.
  • Valoren — Swiss security identifier.
  • FIGI — Bloomberg Financial Instrument Global Identifier.
  • CompositeFIGI — country-level composite FIGI.

Must match the kind selected in identifierType.

Example:

"AAPL"

identifierType
enum<string>
required

Tells the API how to interpret identifier. Required. See TenderOfferIdentifierType for the full set of supported values and what each one means. Which kind of identifier you are filtering by. Provide the matching value in the identifier field:

  • Symbol — exchange ticker (e.g. AAPL).
  • CUSIP — 9-character U.S./Canadian security identifier.
  • ISIN — 12-character international identifier.
  • SEDOL — 7-character UK identifier.
  • Valoren — Swiss identifier.
  • FIGI — Bloomberg Financial Instrument Global Identifier.
  • CompositeFIGI — country-level composite FIGI.
Available options:
Symbol,
CUSIP,
ISIN,
SEDOL,
Valoren,
FIGI,
CompositeFIGI
Example:

"Symbol"

startDate
string<date>
required

Start of the spin-off announcement window, inclusive. Format: YYYY-MM-DD (e.g. 2020-01-01). Required.

Example:

"2020-01-01"

endDate
string<date>
required

End of the spin-off announcement window, inclusive. Format: YYYY-MM-DD (e.g. 2020-12-31). Required.

Example:

"2020-12-31"

Response

Successful response with spinoffs data

spinoffs
object[]

Array of corporate spinoff events