용어집
What is API rate limiting?
API rate limiting is the practice of capping how many requests a client can make in a given time window, to protect a service from overload and abuse. Common models include the fixed window, sliding window, token bucket, and credit-based quotas. Exceed the cap and the API answers with a 429 error.
Handle limits with exponential backoff and jitter, and budget your quota before firing requests so one bursty job does not starve the rest.
SocialCrawl uses a credit quota instead of a per-minute cap, so throughput is governed by your balance, not by a sliding window you have to pace against.
SocialCrawl로 해보기
A credit-metered call with no per-minute cap
curl "https://www.socialcrawl.dev/v1/search/everywhere?query=nike" \
-H "x-api-key: sc_your_api_key_here"자주 묻는 질문
자주 묻는 질문
API, 요금제, 기능에 대한 질문과 답변입니다.
문의하기What is API rate limiting?
API rate limiting is the practice of capping how many requests a client can make in a given time window, to protect a service from overload and abuse. Common models include the fixed window, sliding window, token bucket, and credit-based quotas. Exceed the cap and the API answers with a 429 error. Handle limits with exponential backoff and jitter, and budget your quota before firing requests so one bursty job does not starve the rest. SocialCrawl uses a credit quota instead of a per-minute cap, so throughput is governed by your balance, not by a sliding window you have to pace against.
AI에게 SocialCrawl을 물어보세요
