Core concepts
Errors
Standard HTTP status codes, plus an error object with a stable code, a human message, and optional details.
Error shape
[ .JSON ]
{ "request_id": "sc_a1b2c3d4e5f6a7b8c9d0", "error": { "code": "route_not_supported", "message": "reddit does not support users/followers.", "details": { "platform": "reddit", "resource": "users", "action": "followers" } }}
Error codes
CodeStatusMeaning
validation_error400A path or query parameter did not match the schema. See error.details.platform_unknown400Resolve could not infer a platform. Pass platform explicitly.missing_api_key401No Authorization header was provided.invalid_api_key401The provided SocialiQ API key is invalid.route_not_supported404That platform does not support this resource/action. Check the coverage matrix.provider_rate_limited429The platform rate-limited the request. Back off and retry.provider_unavailable502The platform was temporarily unavailable. Safe to retry with backoff.