Skip to main content
POST
/
gif
/
capture
Capture GIF from URL
curl --request POST \
  --url https://api.pictify.io/gif/capture \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "width": 800,
  "height": 600,
  "quality": "medium",
  "frameDurationSeconds": 15.5
}
'
{
  "gif": {
    "url": "<string>",
    "uid": "<string>",
    "width": 123,
    "height": 123,
    "animationLength": 123
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the Pictify dashboard

Body

application/json
url
string<uri>
required

URL to capture

width
integer
default:800
Required range: 1 <= x <= 2000
height
integer
default:600
Required range: 1 <= x <= 2000
quality
enum<string>
default:medium

Quality preset

Available options:
low,
medium,
high
frameDurationSeconds
number

Recording duration in seconds

Required range: 1 <= x <= 30

Response

200 - application/json

GIF captured

gif
object