gpt4.discord.rocks Open in urlscan Pro
188.114.97.3  Public Scan

Submitted URL: http://gpt4.discord.rocks/
Effective URL: https://gpt4.discord.rocks/
Submission: On May 01 via api from US — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

Join our Discord server


GPT-4 API DOCUMENTATION


ENDPOINTS

There is one main endpoint:

 * /ask: Endpoint to send a prompt and receive a response from the GPT-4 model
   (Free endpoint).


OPENAI COMPATIBLE

openai.base_url = "http://gpt4.discord.rocks"


MODELS

['gpt-4-turbo-2024-04-09', 'gpt-4-0125-preview', 'gpt-4-turbo-preview', 'gpt-4-1106-preview', 'gpt-4', 'gpt-4-0613', 'gpt-4-32k', 'gpt-4-32k-0613', 'gpt-3.5-turbo-0125', 'gpt-3.5-turbo', 'gpt-3.5-turbo-1106', 'gpt-3.5-turbo-instruct', 'gpt-3.5-turbo-16k', 'gpt-3.5-turbo-0613', 'gpt-3.5-turbo-16k-0613']


/ASK ENDPOINT (FREE)

The /ask endpoint is used to send a prompt to the GPT-4 model and receive a
response.


USAGE

Send a POST request to /ask with the following JSON payload:

{
    "messages": [
        {"role": "user", "content": "Message content"},

        {"role": "assistant", "content": "Assistant response"},
        ...
    ],
    "model": "gpt-4-turbo-preview"
}


RESPONSE FORMAT

The response will be in the following format:

{
    "response": "Bot response content",
    "url": "URL of the generated image if applicable"
}


CHAT INTERFACE

Send