Extract completed contract data
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/extract \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/extract', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/v1/envelopes/{id}/extract"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "not_extracted",
"envelopeId": "<string>",
"envelopeStatus": "draft",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}envelopes
Extract completed contract data
Returns not_extracted until completion. Completed envelopes return deterministic structured parties, lifecycle dates, labeled signed fields, and semantic date/governing-law values when those labels exist.
GET
/
api
/
v1
/
envelopes
/
{id}
/
extract
Extract completed contract data
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/extract \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/extract', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/v1/envelopes/{id}/extract"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "not_extracted",
"envelopeId": "<string>",
"envelopeStatus": "draft",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}Authorizations
apiKeyoauthJwt
Organization API key (format atlas_sk_...), passed as a bearer token or the x-api-key header. Created and revoked in the dashboard (Better Auth api-key plugin); shown in full only once and stored hashed.
Path Parameters
Envelope id
Minimum string length:
1Response
Extraction status or completed structured contract data