> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Use GraphQL API

> Query selected Veryfront fields from typed clients.

Use GraphQL when a typed client needs selected project and runtime fields in one response.

## Request

```bash title="Terminal" theme={null}
curl https://api.veryfront.com/graphql \
  -H "Authorization: Bearer $VERYFRONT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"query { projects { id slug name } }"}'
```

Confirm the response includes `projects`.

## Next

| Page                                                                    | Goal                                  |
| ----------------------------------------------------------------------- | ------------------------------------- |
| [GraphQL API](/cloud/graphql)                                           | Review the GraphQL overview.          |
| [GraphQL operations](/cloud/graphql/operations/api-keys/queries/apikey) | Open the GraphQL operation reference. |
