API Documentation
API Reference
- POSTSubmit Job
- GETGet Result
- POSTChat Completions
- GETGet Completion Time
- GETGet Total Job Count
- POSTGet Node Job History
- GETGet Available Models
- POSTWorker Register
- POSTWorker Deregister
- POSTUpdate Model
- GETPing Worker
- POSTUpdate Result
- GETGet Job
- POSTSignup
- GETGet Unique Nodes
- POSTRegister Node
- POSTCheck Node
- GETNode Model Mapping
- GETGet Active Node Count
- POSTNode Jobs Stats
- GETNode Points Ep
- GETNetwork Stats
- POSTDaily Points Ep
- GETGet Points
- GETGet Node Job Count
API Reference
Submit Job
POST
/
submit_job
curl --request POST \
--url https://api.infera.org/submit_job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"model": "<string>",
"messages": [
{
"role": "<string>",
"content": "<string>"
}
],
"max_output": 123,
"temperature": 123
}'
"<any>"
Authorizations
Body
application/json
Response
200
application/json
Successful Response
The response is of type any
.
curl --request POST \
--url https://api.infera.org/submit_job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"model": "<string>",
"messages": [
{
"role": "<string>",
"content": "<string>"
}
],
"max_output": 123,
"temperature": 123
}'
"<any>"