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

# GET /v1/me — Current Org and Credits

> Returns your organization ID, display name, and remaining credit balance. Use this to monitor usage before running expensive jobs.

`GET /v1/me` returns your organization details and remaining credit balance. Call it to confirm your API key is valid, identify which org it belongs to, and check how many credits you have before running transcript or extraction jobs.

## Endpoint

```
GET https://api.veedcrawl.com/v1/me
```

## Authentication

This endpoint requires an `x-api-key` header.

## Parameters

This endpoint takes no query parameters.

## Example

```bash theme={null}
curl "https://api.veedcrawl.com/v1/me" \
  -H "x-api-key: YOUR_KEY"
```

## Response

```json theme={null}
{
  "orgId": "org_abc123",
  "name": "My Org",
  "creditsRemaining": 87
}
```

<ResponseField name="orgId" type="string">
  Your organization's unique identifier.
</ResponseField>

<ResponseField name="name" type="string">
  Your organization's display name.
</ResponseField>

<ResponseField name="creditsRemaining" type="number">
  Credits remaining in your current billing period.
</ResponseField>

<Tip>
  Call `GET /v1/me` before running extract jobs to confirm you have enough credits. Each extraction costs 10 credits, and each Whisper transcription costs 5.
</Tip>
