Skip to main content
POST
/
v1
/
flow
/
files
/
validate_metadata
Validate file metadata
curl --request POST \
  --url https://flow.seekr.com/v1/flow/files/validate_metadata \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "purpose": "<string>",
  "suffix": "<string>",
  "size": 123
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Body

application/json
purpose
string
required
suffix
string
required
size
integer
required

Response

Successful Response

Last modified on June 18, 2026