Greenchoice Scraper
Api

List endpoints

Overview of the available routes, authentication header, and supported query parameters. Use this before wiring a consumer client.

GET/v1/endpoints

Overview of the available routes, authentication header, and supported query parameters. Use this before wiring a consumer client.

Authorization

BearerAuth
AuthorizationBearer <token>

Database-provisioned API token for consumer API access. Send as Authorization: Bearer .

In: header

Response Body

application/json

application/json

curl -X GET "https://scraper.greenchoice.thirty-five.dev/v1/endpoints"
{
  "version": "string",
  "auth": {
    "header": "string"
  },
  "data": [
    {
      "path": "string",
      "method": "GET",
      "summary": "string",
      "authHeader": "string",
      "pagination": true,
      "queryParameters": [
        "string"
      ]
    }
  ]
}
{
  "error": "string",
  "code": "bad_request"
}