Skip to main content
Retrieves data or executes operations on a specified endpoint using the Rapida API.
For full setup and authentication options, see the Installation guide: /api-reference/introduction.

Parameters

connectionConfig
ConnectionConfig
required
Configuration for the client connection.
request
GetEndpointRequest
required

Usage

from rapida import (
    ConnectionConfig,
    GetEndpointRequest,
    get_endpoint
)
from pprint import pprint
connection_config = ConnectionConfig.default_connection_config(
    ConnectionConfig.with_sdk("{your-rapida-api-key}")
)
response = get_endpoint(
    client_cfg=connection_config,
    request=GetEndpointRequest(id=2223006263292198912),
)
pprint(response)

Response

code
int32
Numeric status code for the operation.
success
boolean
Indicates whether the operation was successful.
data
object
Detailed information about the endpoint.
error
object
Error information, if applicable.