Skip to content
中文

GET /fal-ai/

Method: GETEndpoint: /fal-ai/

This section contains endpoint-specific behavior, parameters, or usage notes for this API.

Request Parameters

Header Parameters

text
Content-Type
string
Optional
Example:
application/json
Authorization
string
Optional
Default Value:
Bearer {{YOUR_API_KEY}}

Example Request

Shell

bash
curl --location -g --request GET '/fal-ai/{{model_name}}/requests/{{request_id}}' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json'

Response

🟢 200 Success

Content Type: application/json

Response Schema

text
images
array
[object]
Required
  // provider-specific example normalized for English documentation
url
string
  // provider-specific example normalized for English documentation
Required
content_type
string
Required
  // provider-specific example normalized for English documentation
seed
integer
Required
  // provider-specific example normalized for English documentation
has_nsfw_concepts
array
[boolean]
Required
  // provider-specific example normalized for English documentation
prompt
string
Required
  // provider-specific example normalized for English documentation
timings
object
Required
  // provider-specific example normalized for English documentation

Example

json
{
    "images": [
        {
            "url": "https://cdn.fal.ai/xxxx.jpg",
            "content_type": "image/jpeg"
        }
    ],
    "seed": 123456,
    "has_nsfw_concepts": [
        false
    ],
    "prompt": "Example prompt from provider documentation.",
    "timings": {}
}