Get equity offering events
curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"acceptance_time": "<string>",
"cik": "0001949154",
"company_name": "Avlok Capital, LP - C2",
"date": "2022-10-05T04:00:00.000Z",
"date_of_first_sale": "<string>",
"duration_of_offering_is_more_than_year": true,
"entity_name": "Avlok Capital, LP - C2",
"entity_type": "Limited Partnership",
"federal_exemptions_exclusions": "<string>",
"filing_date": "2022-10-05 00:00:00",
"finders_fees": 123,
"form_signification": "Notice of Exempt Offering of Securities",
"form_type": "D",
"gross_proceeds_used": 123,
"has_non_accredited_investors": true,
"incorporated_within_five_years": true,
"industry_group_type": "<string>",
"is_amendment": true,
"is_business_combination_transaction": true,
"issuer_city": "<string>",
"issuer_phone_number": "<string>",
"issuer_state_or_country": "<string>",
"issuer_state_or_country_description": "<string>",
"issuer_street": "<string>",
"issuer_zip_code": "<string>",
"jurisdiction_of_incorporation": "<string>",
"minimum_investment_accepted": 123,
"related_person_city": "<string>",
"related_person_first_name": "<string>",
"related_person_last_name": "<string>",
"related_person_relationship": "<string>",
"related_person_state_or_country": "<string>",
"related_person_state_or_country_description": "<string>",
"related_person_street": "<string>",
"related_person_zip_code": "<string>",
"revenue_range": "<string>",
"sales_commissions": 123,
"securities_offered_are_of_equity_type": true,
"total_amount_remaining": 123,
"total_amount_sold": 123,
"total_number_already_invested": 123,
"total_offering_amount": 123,
"year_of_incorporation": "<string>"
}
],
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Stock
Get equity offering events
OpenAPI JSON Spec Return the latest equity offerings, including new shares being issued by companies and exempt offerings and amendments. Served from the local Postgres table populated by the daily ingestion cron.
GET
/
v1
/
stocks
/
equity-offering
Get equity offering events
curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/stocks/equity-offering")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"acceptance_time": "<string>",
"cik": "0001949154",
"company_name": "Avlok Capital, LP - C2",
"date": "2022-10-05T04:00:00.000Z",
"date_of_first_sale": "<string>",
"duration_of_offering_is_more_than_year": true,
"entity_name": "Avlok Capital, LP - C2",
"entity_type": "Limited Partnership",
"federal_exemptions_exclusions": "<string>",
"filing_date": "2022-10-05 00:00:00",
"finders_fees": 123,
"form_signification": "Notice of Exempt Offering of Securities",
"form_type": "D",
"gross_proceeds_used": 123,
"has_non_accredited_investors": true,
"incorporated_within_five_years": true,
"industry_group_type": "<string>",
"is_amendment": true,
"is_business_combination_transaction": true,
"issuer_city": "<string>",
"issuer_phone_number": "<string>",
"issuer_state_or_country": "<string>",
"issuer_state_or_country_description": "<string>",
"issuer_street": "<string>",
"issuer_zip_code": "<string>",
"jurisdiction_of_incorporation": "<string>",
"minimum_investment_accepted": 123,
"related_person_city": "<string>",
"related_person_first_name": "<string>",
"related_person_last_name": "<string>",
"related_person_relationship": "<string>",
"related_person_state_or_country": "<string>",
"related_person_state_or_country_description": "<string>",
"related_person_street": "<string>",
"related_person_zip_code": "<string>",
"revenue_range": "<string>",
"sales_commissions": 123,
"securities_offered_are_of_equity_type": true,
"total_amount_remaining": 123,
"total_amount_sold": 123,
"total_number_already_invested": 123,
"total_offering_amount": 123,
"year_of_incorporation": "<string>"
}
],
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}⌘I

