Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update: Add OpenAI API Key #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ KeyHacks shows ways in which particular API keys found on a Bug Bounty Program c
- [New Relic REST API](#New-Relic-REST-API)
- [NPM token](#NPM-token)
- [OpsGenie API Key](#OpsGenie-API-Key)
- [OPENAI API KEY](#OPENAI_API_KEY)
- [Pagerduty API token](#Pagerduty-API-token)
- [Paypal client id and secret key](#Paypal-client-id-and-secret-key)
- [Pendo Integration Key](#Pendo-Integration-Key)
Expand Down Expand Up @@ -747,6 +748,17 @@ P.S. Some companies [uses registries other than `registry.npmjs.org`](https://me
curl https://api.opsgenie.com/v2/alerts -H 'Authorization: GenieKey API_KEY'
```

## [OPENAI API KEY](https://platform.openai.com/docs/api-reference)


List Files Using the OpenAI API:

```
curl -X GET -H "Authorization: Bearer YOUR_OPENAI_API_KEY" https://api.openai.com/v1/files
```

Unauthorized usage can also lead to significant financial costs, given the potential rate and volume of API calls.

## [Keen.io API Key](https://keen.io/docs/api/)

Get all collections for a specific project:
Expand Down