Skip to content

1.2) API Structure

Marco Cesarato edited this page Apr 11, 2019 · 1 revision

Format availables:

  • JSON

  • XML

  • HTML

Generic URL format for all kind of request:

Standard

  • Fetch all: /[database]/[table].[format]
  • Fetch all with limit: /[database]/[limit]/[table].[format]
  • Fetch: /[database]/[table]/[ID].[format]
  • Fetch search by coolumn: /[database]/[table]/[column]/[value].[format]
  • Documentation: /[database]/docs/[table].[format]

With Authentication

  • Fetch all: /[token]/[database]/[table].[format]
  • Fetch all with limit: /[token]/[database]/[limit]/[table].[format]
  • Fetch: /[token]/[database]/[table]/[ID].[format]
  • Fetch search by column: /[token]/[database]/[table]/[column]/[value].[format]
  • Documentation: /[token]/[database]/docs/[table].[format]