Skip to main content
Veryfront APIs use bearer credentials for server-side requests and MCP clients.

Steps

  1. Create an API key in Veryfront Studio.
  2. Store the key in a secret manager or local environment file.
  3. Send the key in the Authorization header.
  4. Keep API keys out of browser code.

Authorization header

Authorization header
Authorization: Bearer <API_KEY>

Try it with REST

Set the key:
Terminal
export VERYFRONT_API_KEY="<API_KEY>"
List projects: GET /projects
Terminal
curl https://api.veryfront.com/projects \
  -H "Authorization: Bearer $VERYFRONT_API_KEY"

API surfaces

Verify

Confirm the response returns projects you can access. Do not call Veryfront APIs with API keys from browser code. Use a server route or backend service for requests that need a secret key. Project-scoped requests also need access to the target project.

Next

GoalPage
Create an API keyCreate API key
Manage project accessManage project access
Compare API surfacesAPI reference

API reference

APIUse
RESTBearer authentication for resource requests.
GraphQLBearer authentication for typed queries.
MCPBearer authentication for assistant tools.