Define your APIs after high-level design:
REST example:
POST /tweets
body: { text, media_ids }
returns: { tweet_id, created_at }
GET /timeline?user_id=X&cursor=Y
returns: { tweets[], next_cursor }
Key decisions to explain:
- Pagination strategy (cursor vs offset)
- Authentication (API key, OAuth token)
- Rate limiting headers
- Versioning (/v1/tweets)
You don't need complete OpenAPI specs. Show - key endpoints. Demonstrate you understand REST conventions and pagination.