Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
doc: remove live API references (#155)
Browse files Browse the repository at this point in the history
The API is no longer maintained.
  • Loading branch information
cragwolfe authored Jul 28, 2023
1 parent 9211d5b commit bd684dc
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

This repo implements a document pre-processing pipeline for SEC filings. Currently, the pipeline is capable of extracting narrative text from user-specified sections in 10-K, 10-Q, and S-1 filings.

The API is hosted at `https://api.unstructured.io`.

## Developer Quick Start

* Using `pyenv` to manage virtualenv's is recommended
Expand Down Expand Up @@ -40,7 +38,7 @@ the `sample-docs` folder, run:

```
curl -X 'POST' \
'https://api.unstructured.io/sec-filings/v0.2.1/section' \
'http://localhost:8000/sec-filings/v0.2.1/section' \
-H 'accept: application/json' \
-H 'Content-Type: multipart/form-data' \
-F '[email protected]' \
Expand Down Expand Up @@ -131,7 +129,7 @@ You can always replace the header `-H 'accept: application/json'` with `-H 'acce

```
curl -X 'POST' \
'https://api.unstructured.io/sec-filings/v0.2.1/section' \
'http://localhost:8000/sec-filings/v0.2.1/section' \
-H 'accept: text/csv' \
-H 'Content-Type: multipart/form-data' \
-F '[email protected]' \
Expand All @@ -146,7 +144,7 @@ In addition, you can add the form `-F 'output_schema=labelstudio'` if you want a

```
curl -X 'POST' \
'https://api.unstructured.io/sec-filings/v0.2.1/section' \
'http://localhost:8000/sec-filings/v0.2.1/section' \
-H 'accept: application/json' \
-H 'Content-Type: multipart/form-data' \
-F '[email protected]' \
Expand Down

0 comments on commit bd684dc

Please sign in to comment.