OffloadGPT API
  • Introduction
  • Quick Start
  • Server Events
  • Reference
    • API Reference
      • stream-chatgpt endpoint
      • async-chatgpt endpoint
      • Status URL endpoints
Powered by GitBook
On this page
  • Request for a Stream ChatGPT endpoint
  • Generates streaming and asynchronous endpoints for chat responses.
  • Response from the Stream ChatGPT endpoint
  • Response for private access requests
  • Stopping active requests using the stop_url endpoint
  1. Reference
  2. API Reference

stream-chatgpt endpoint

Performs a managed ChatGPT API request to create an streaming endpoint.

PreviousAPI ReferenceNextasync-chatgpt endpoint

Last updated 1 year ago

Performs an request generating custom endpoints in order to display the response status and send the stream output in format.

This endpoint is designed for sending streaming data. If this is not the case, it is recommended to use the .

The only required parameter -besides headers- is the messages parameter. All other parameters refer to the default values of the Chat Completion API.

Request for a Stream ChatGPT endpoint

Generates streaming and asynchronous endpoints for chat responses.

POST https://offloadgpt.p.rapidapi.com/v1/stream-chatgpt

Headers

Name
Type
Description

Content-Type

String

application/json

X-OpenAI-API-Key*

String

<Your OpenAI API key>

X-RapidAPI-Key*

String

<Your RapidAPI key>

X-RapidAPI-Host*

String

offloadgpt.p.rapidapi.com

Request Body

Name
Type
Description

access

string

Privacy of the generated endpoints: public to be available for anyone, or private to access only using a generated Bearer Token. Default is public.

timeout

Number

The timeout of the request in seconds. Default value is 90 seconds. Max timeout allowed is 90 seconds.

connect_timeout

Number

The timeout to stablish connection with the OpenAI API. Default value is 5 seconds. Max connection timeout allowed is 10 seconds.

from_status_url

String

The Url of a previously generated status_url. This allows to concatenate the previous messages with the new one sent in the current request.

from_bearer_token

String

In the case of setting a value to the from_status_url argument, if this URL is private then it is necessary to provide its associated bearer_token generated on the same request.

conversation_id

String

webhook_url

String

A external URL to send, using the POST method, with all the information processed. There is only one parameter called response containing a JSON with the same information of the final status_url response.

model

String

messages*

Array

temperature

Number

top_p

Number

n

Integer

max_tokens

Integer

stop

String or Array

presence_penalty

Number

frequency_penalty

Number

logit_bias

Map

user

String

from_max_length

Number

In the case of setting a value to the from_status_url argument, here you can restrict the number of characters from the last response of the previous messages.

{
    "status": "success",
    "created_at": 1685617626,
    "conversation_id": "24b94bef-d2a6-4faa-bb20-1429e846c9d3",
    "README": "The `stream_events_url` endpoint below streams data sent by the ChatGPT API. Open it to receive incoming messages.",
    "authorization": {
        "access": "public"
    },
    "endpoints": {
        "status_url": "https://api.offloadgpt.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3.json",
        "stream_events_url": "https://api.offloadgpt.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3.txt",
        "stop_url": "https://api.offloadgpt.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3/stop"
    }
}

Response from the Stream ChatGPT endpoint

For a successful request, the response will look as follows, having a success status:

{
    "status": "success",
    "created_at": 1685617626,
    "conversation_id": "24b94bef-d2a6-4faa-bb20-1429e846c9d3",
    "README": "The `stream_events_url` endpoint below streams data sent by the ChatGPT API. Open it to receive incoming messages.",
    "authorization": {
        "access": "public"
    },
    "endpoints": {
        "status_url": "https://offloadgpt.microdeploy.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3.json",
        "stream_events_url": "https://offloadgpt.microdeploy.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3.txt",
        "stop_url": "https://offloadgpt.microdeploy.com/1/r/pub/2023/06/01/11/07/06/24b94bef-d2a6-4faa-bb20-1429e846c9d3/stop"
    }
}

We can see other properties such as created_at, the conversation_id (filled from the parameters or generated if missing), and the generated endpoints property.

Note that this response has been created with the public value of the access argument, as specified in the property authorization.access.

This means that the resulting endpoints are publicly available via GET requests, and can be accessed by anyone even when navigating from a web browser.

Response for private access requests

For private access requests, the response would look as follows:

{
    "status": "success",
    "created_at": 1685686261,
    "conversation_id": "633249b8-cee5-4636-ae71-5ed45624ac93",
    "README": "The `stream_events_url` endpoint below streams data sent by the ChatGPT API. Open it to receive incoming messages.",
    "authorization": {
        "access": "private",
        "bearer_token": "718862c1382b2ffbb445f6c1abec79b2",
        "stream_url_arg": "stream_token=2d1fe9502cd65b84dc90577f322d0300"
    },
    "endpoints": {
        "status_url": "https://offloadgpt.microdeploy.com/1/r/priv/2023/06/02/06/11/01/633249b8-cee5-4636-ae71-5ed45624ac93.json",
        "stream_events_url": "https://offloadgpt.microdeploy.com/1/r/priv/2023/06/02/06/11/01/633249b8-cee5-4636-ae71-5ed45624ac93.txt",
        "stop_url": "https://offloadgpt.microdeploy.com/1/r/priv/2023/06/02/06/11/01/633249b8-cee5-4636-ae71-5ed45624ac93/stop"
    }
}

Here we can see the following changes from the authorization property:

  • The value of access is now private.

  • It provides a bearer_token property.

  • Additionally there is a stream_url_arg property.

In private requests, the generated endpoints can be accessed via GET requests using this header:

Authorization: Bearer <bearer_token>

In case you are using the stream_events_url from the Javascript EventSource object -which does not allow to add headers- you can grant access adding the stream_url_arg property to the stream_events_url endpoint:

https://offloadgpt.microdeploy.com/1/r/priv/...5ed45624ac93.txt?<stream_url_arg>

In the same way, if you are chaining conversations using the from_status_url parameter, and the referenced conversation has private access, then you need to stablish the from_bearer_token parameter using the previous bearer_token value, ensuring to continue from a private request (even if the new request is public).

Stopping active requests using the stop_url endpoint

While the request is active and has not finished, you can stop the streaming flow of data and terminate the request using the stop_url endpoint.

It works as the same way as the other endpoints, so it is publicly accesible in case of public access, and needs the Authorization: Bearer for private access.

After the request has finished and the OpenAI API response has been processed, this endpoint no longer has any effect and returns a 405 status code.

If provided, any other conversation derived from this one will keep this conversation identifier. If not provided, a default id will be generated in .

Refers to the of the OpenAI Chat Completion API. If omitted, the default value is gpt-3.5-turbo.

Refers to the of the OpenAI Chat Completion API. This is the only one required parameter.

Refers to the of the OpenAI Chat Completion API. Defaults to 1.

Refers to the of the OpenAI Chat Completion API. Defaults to 1.

Refers to the of the OpenAI Chat Completion API. Defaults to 1.

Refers to the of the OpenAI Chat Completion API. Defaults to inf.

Refers to the of the OpenAI Chat Completion API. Defaults to null.

Refers to the of the OpenAI Chat Completion API. Defaults to 0.

Refers to the of the OpenAI Chat Completion API. Defaults to 0.

Refers to the of the OpenAI Chat Completion API. Defaults to null.

Refers to the of the OpenAI Chat Completion API. Defaults to null.

OpenAI Chat Completion
text/event-stream
async-chagpt endpoint
UUID format
model parameter
messages parameter
temperature parameter
top_p parameter
n parameter
max_tokens parameter
stop parameter
presence_penalty parameter
frequency_penalty parameter
logit_bias parameter
user parameter