RSS3 Documentation

RSS3 AgentData

Health Check

Health check endpoint to verify the service is running properly. Checks database connectivity and returns service status information.

GET
/api/v1/health
/api/v1/health
curl -X GET "https://ai.rss3.io/api/v1/health"

Successful Response

{
  "status": "string",
  "timestamp": "2019-08-24T14:15:22Z",
  "database": true
}

Get Ai Intels

Get recent AI intels with configurable limit

GET
/api/v1/ai_intel
/api/v1/ai_intel

Query Parameters

limitLimit

Number of AI intels to return (1-100)

Default: 10Minimum: 1Maximum: 100
curl -X GET "https://ai.rss3.io/api/v1/ai_intel?limit=10"

Successful Response

[
  {
    "agent_insight": "string",
    "knowledge_corpus": "string",
    "intel_digest": "string"
  }
]

Get Tweets By Handle

Get tweets from a specific Twitter handle

GET
/api/v1/tweets/{handle}
/api/v1/tweets/{handle}

Path Parameters

handle
Required
Handle

Twitter handle to fetch tweets for

Query Parameters

typeType

Tweet type filter: tweet, reply, retweet, or quote

limitLimit

Number of tweets to return

Default: 50
curl -X GET "https://ai.rss3.io/api/v1/tweets/string?type=tweet&limit=50"

Successful Response

[
  {
    "tweet_id": "string",
    "handle": "string",
    "content": "string",
    "created_at": "2019-08-24T14:15:22Z",
    "type": "tweet"
  }
]