api.www.documentcloud.org Open in urlscan Pro
2606:4700:10::ac43:c91  Public Scan

Submitted URL: http://api.www.documentcloud.org/
Effective URL: https://api.www.documentcloud.org/api/
Submission: On February 04 via manual from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form id="get-form" class="pull-right">
  <fieldset>
    <div class="btn-group format-selection">
      <a class="btn btn-primary js-tooltip" href="/api/" rel="nofollow" title="" data-original-title="Make a GET request on the Api Root resource">GET</a>
      <button class="btn btn-primary dropdown-toggle js-tooltip" data-toggle="dropdown" title="" data-original-title="Specify a format for the GET request">
        <span class="caret"></span>
      </button>
      <ul class="dropdown-menu">
        <li>
          <a class="js-tooltip format-option" href="/api/?format=json" rel="nofollow" title="" data-original-title="Make a GET request on the Api Root resource with the format set to `json`">json</a>
        </li>
        <li>
          <a class="js-tooltip format-option" href="/api/?format=api" rel="nofollow" title="" data-original-title="Make a GET request on the Api Root resource with the format set to `api`">api</a>
        </li>
      </ul>
    </div>
  </fieldset>
</form>

/api/

<form class="button-form" action="/api/" data-method="OPTIONS">
  <button class="btn btn-primary js-tooltip" title="" data-original-title="Make an OPTIONS request on the Api Root resource">OPTIONS</button>
</form>

Text Content

Django REST framework
 * Api Root

GET
 * json
 * api

OPTIONS


API ROOT

The default basic root view for DefaultRouter

GET /api/

HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "documents": "https://api.www.documentcloud.org/api/documents/",
    "organizations": "https://api.www.documentcloud.org/api/organizations/",
    "projects": "https://api.www.documentcloud.org/api/projects/",
    "users": "https://api.www.documentcloud.org/api/users/",
    "addons": "https://api.www.documentcloud.org/api/addons/",
    "addon_runs": "https://api.www.documentcloud.org/api/addon_runs/",
    "addon_events": "https://api.www.documentcloud.org/api/addon_events/"
}