- Get started
- Introduction
- Authentication
- Making requests
- Streaming
- Audio
- Batch
- Models
- Invites
- Chat
- Users
- Projects
- Project users
- Project service accounts
- Project API keys
- Audit logs
- Usage
- Project rate limits
- Completions
- Uploads
- Embeddings
- Files
- Moderations
- Assistants (v1)
- Threads (v1)
- Messages (v1)
- Runs (v1)
- Images
- Fine-tuning
List fine-tuning jobs
GET
https://api.openai.com/v1/fine_tuning/jobs
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
limit
stringÂ
required
Example:
2
Header Params
Authorization
stringÂ
required
Example:
Bearer $OPENAI_API_KEY
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/v1/fine_tuning/jobs?limit=2' \
--header 'Authorization: Bearer $OPENAI_API_KEY'
Responses
🟢200Success
application/json
Body
object
stringÂ
required
data
array [object {7}]Â
required
object
stringÂ
optional
id
stringÂ
optional
created_at
integerÂ
optional
level
stringÂ
optional
message
stringÂ
optional
data
nullÂ
optional
type
stringÂ
optional
has_more
booleanÂ
required
Example
{
"object": "list",
"data": [
{
"object": "fine_tuning.job.event",
"id": "ft-event-TjX0lMfOniCZX64t9PUQT5hn",
"created_at": 1689813489,
"level": "warn",
"message": "Fine tuning process stopping due to job cancellation",
"data": null,
"type": "message"
},
{ ... },
{ ... }
], "has_more": true
}
Modified at 2024-12-13 10:20:37