Skip to main content
GET
/
v1
/
sfx
/
history
History
curl --request GET \
  --url https://os.gan.ai/v1/sfx/history \
  --header 'ganos-api-key: <api-key>'
{
  "total": 123,
  "data": [
    {
      "inference_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "sfx_prompt": "<string>",
      "generation_params": {
        "duration_seconds": 123,
        "creativity": 123,
        "seed": 123
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

ganos-api-key
string
header
required

Use the API key generated from our website to programmatically interact with our endpoints. This key authorizes your requests, allowing you to access and utilize our services securely.

Query Parameters

skip
integer
default:0
limit
integer
default:10

Response

Successful Response

total
integer
required

Total number of sound effects inferences generated by the user.

data
SfxHistoryDetails · object[] | null

Lists the inference ids, audio prompts and generation parameters provided as the input per inference that were generated.

I