Rowland LogoRowland

Quick Start Guide

Get started with the API in minutes

1. Get Your API Key

Contact your administrator for enterprise API access. You'll receive:

  • API key for authentication
  • Base URL for requests
  • Monthly usage limits

2. Upload Your First Document

curl -X POST "https://api.rowland.ai/v0/documents" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F "file=@division_order.pdf"

3. Check Processing Status

curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.yourcompany.com/v0/documents/{document_id}/status"

Processing typically takes 30-120 seconds depending on document size and complexity.

4. Get Extracted Data

curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.yourcompany.com/v0/documents/{document_id}/extractions"

Response Example

{
  "document_id": "123e4567-e89b-12d3-a456-426614174000",
  "total_objects": 3,
  "flagged_for_review": false,
  "consolidated_objects": [
    {
      "well_name": "EAGLE FORD SHALE 1H",
      "operator": "ABC Energy Corp",
      "nri": "0.125",
      "interest_type": "Working Interest",
      "effective_date": "2024-01-15"
    }
  ]
}