Skip to content
AttestLayerAttestLayer

← Help Center

API access and technical quickstart

API access is optional. Direct buyers can complete Pilot and first live use through the browser-first Buyer Console flow. This page is for teams that want programmatic access after their account is active.

Where API access lives

Open the Technical Access section inside the Buyer Console. From there you can view or generate your API key, copy a cURL example, and open the full API docs.

What API access is for

  • CI/CD integration — submit evidence from your pipeline
  • Scripted batch submissions
  • Programmatic result retrieval
  • Automation workflows for teams that need it

cURL example

curl -X POST https://api.attestlayer.com/v1/submissions \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@evidence.zip" | jq .

Replace YOUR_API_KEY with the key from your Buyer Console Technical Access section.

Docs

Full API documentation is available at partners.attestlayer.com/docs/quickstart.

Key rotation

You can rotate your API key at any time from the Technical Access section in the Buyer Console. After rotation, the previous key is invalidated immediately.

Security note

API keys are hashed before storage. Plaintext keys are never persisted on our servers. Treat your API key like a password — do not share it in public repositories or logs.