Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/api-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ You can pin a specific version with either `/owner/repo/<version>` or `/owner/re
### Complete Workflow Example

```python
import os
import requests

headers = {"Authorization": "Bearer CONTEXT7_API_KEY"}
headers = {"Authorization": f"Bearer {os.environ['CONTEXT7_API_KEY']}"}

# Step 1: Search for the library
search_response = requests.get(
Expand Down